html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "forma-djr-display", sans-serif;
}
body {
    margin: 10px 20px;
    font-weight: 700;
    font-style: normal;
}

#logo {
    width: 100px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    right: 10px;
    padding: 10px;
}

#menu {
    color: black;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 100;
    font-size: 30px;
    transition: color 0.3s ease;
}

#menu:hover {
    color: #E8101B;
}

#menuNav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    transition: right 0.3s ease;
}

#menuList {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

#menuList li {
    padding: 10px;
    font-size: 40px;
    font-weight: 100;
}

#menuList li a {
    text-decoration: none;
    color: black;
}

#menuList li a:hover {
    color: #E8101B;
}

#closeMenu {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#closeMenu:hover {
    color: #E8101B;
}

.container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.about-me {
    max-width: 600px;
    text-align: center;
}

.tags {
    margin-top: 20px;
}

.tags h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tags ul {
    list-style: none;
    padding: 0;
}

.tags li {
    display: inline-block;
    margin: 5px;
}

.tag {
    background-color: #E8101B;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

#yellow {
    background-color: rgb(204, 204, 67);
    color: #333;
}