html, body {
    
    height: 100%;
    margin: 0;
    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;
}

h1 {
    margin: 20px; /* Adds some spacing from the edges */
    font-size: 48px; /* Adjust the size if necessary */
    font-weight: 700;
}

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%;
}

.mail-button {
    background-color: #E8101B;
    color: white;
    font-size: 20px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mail-button:hover {
    background-color: #C00;
}
