body {
    margin: 10px 20px 10px 20px;
    font-family: "forma-djr-display", sans-serif;
    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;
}

#border {
    border: 1px solid gray;
}



.dynamic-texts li span {
    position: relative;

}



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

#work {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-direction: column;
    overflow: hidden;
}

.firstwork {
    width: 400px;
    border: 1px;
    border-radius: 20px;
}

.works {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    flex-direction: column;
}

.title {
    color: black;
    margin: 5px;
    font-size: 30px;
    align-self: center;
    font-weight: 400;
}

#link {
    text-decoration: none;
    margin-bottom: 30px;
}

#white {
    background-color: red;
    width: 400px;
}