*{
    word-wrap: break-word;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}
.body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('../images/6.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1.8;  
    width: 100vw;
    height: 100vh;  
    max-inline-size: 100%;
    object-fit: cover;
    display:flex;
    flex-direction: row;
}
@media (max-width: 850px) {
    .body {
        flex-direction: column;
    }
}




.body:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75); /* Black color with 50% opacity */
    z-index: 1;
}

@media (max-width: 850px) and (max-height:786px) {
    .body {
        min-height: 850px;
    }
    .body:before{
        min-height: 850px;
    }
}

.body * {
    position: relative;
    z-index: 2;
}


.navigation{
order: 1;
width: 10%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 5vh;

}

@media (max-width: 850px) and (min-width: 420px){
    .navigation {
        order: 0;
        flex-direction: row;
        width: 100%;
        height: 10%;
    }
}

@media (max-width: 419px) {
    .navigation {
        order: 0;
        flex-direction: row;
        gap: 1vh;
        width: 100%;
        max-height: 5rem; 
        /* height: 500px; */
        margin: 0;
        margin-top: 1rem;
        
       
       
    }
}

@media (max-width: 850px) and (max-height:786px) {
    .navigation{  
    min-height: 70px;
    
    }
    
}

.navigation__Link{
    background-color: #ff7f50;
    border-radius: 50%;
    padding: 0.4rem;
    text-decoration: none;
    transition: width 1s;

}
/* @media (max-width: 419px) {
    .navigation__Link{
        padding: 0;
        background-color: none;
    }
} */
/* .navigation__Link:hover{
  
    animation: navButtons 1s forwards;
} */

.navigation__Icon{
   
    
}

@keyframes navButtons {
    from{
        padding: 0;

    }
    to{
        padding: 1rem;
        
    }
}