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






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



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

.links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;

    
}

#firstlink {
    background-color: #333;
    color: white;
   
    text-decoration: none; 
    transition: background-color 0.5s ease, color 0.5s ease; 
}

#firstlink:hover {
    background-color: brown;
    color: white;
    
}

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

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

#secondlink {
   
    color: black;
   
    text-decoration: none;
    transition: background-color 0.5s ease, color 0.5s ease; 
}

#secondlink:hover {
    background-color: #c6c6c6;
    color: white;
    
}


.title {
    color: black;
    margin: 5px;
    font-size: 30px;
    align-self: center;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid black;
    padding: 10px;
    border-radius: 10px;
}

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

