body {
    font-family: sans-serif;    
}
.background-photo {
    background-image: url(Photos/GWM.jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
    filter: blur(8px);
    z-index: -999;
    position: absolute;
    }
main {
    width: 50%;
    height: 100vh;
    margin: 0 auto;
    background-color: rgba(223, 223, 223, 0.7);
    
}
/* .helmet-photo {
    width: 403px;
    height: 302px;
    position: absolute;
    margin: 70px 0px 0px 50px;
    border: 2px solid black;
    border-radius: 30px;
}

.photo2 {
    float: right;
    margin: 300px 450px 0 0;
    
}

.axes-photo {
    width: 403px;
    height: 302px;
    position: absolute;
    border: 2px solid black;
    border-radius: 30px;
} */



.text-about-GWM {
    width: 80%;
    height: 100vh;
    border: 2px solid black;
    margin: 0 auto;
    font-size: 18px;
}
.text-about-GWM::first-letter {
    font-size: 30px;
}

.back-btn {
    position: absolute;
    bottom: 0;
    right: 0;   
    font-size: 20px;
    width: 100px;
    height: 50px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.text-about-GWM {
    line-height: 1.5;
}



/* language bar */

.nav-bar {
    width: 250px;
    height: 50px;
    margin-top: 2%;
    display: inline;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    float: right;
    margin-right: 50px;
}

.language-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: aliceblue;
    width: 150px;
    height: 50px;
    background-color: rgb(44, 44, 44);
    position: sticky;
    transition: width 500ms;
}

.lan-icon {
    position: absolute;
    margin-left: 100px;
    transition: margin-left 500ms;
}
#lang-bar-text {
    transition: margin-left 500ms;
}
.lang-select {
    display: flex;
    position: absolute;
    flex-direction: row;
    font-size: 15px;
    gap: 5px;
    margin-left: -70px;
    display: none;
    cursor: pointer;
}

.lang-select li {
    border-right: 1px solid white;
    padding-right: 5px;
}
.lang-select li:last-child {
    border: none;
}
.lang-select li a {
    text-decoration: none;
    color: aliceblue;
}
.arrow-icon {
    color: white;
    position: absolute;
    right: 120px;
    cursor: pointer;
    transition: right 500ms;
}
/* language bar */





/* responsive stuff */

@media (max-width: 1700px) {
    .text-about-GWM {
        font-size: 17px;
    }
}

@media (max-width: 1650px){
    .text-about-GWM {
        font-size: 16px;
    }
}

@media (max-width: 1500px){
    .text-about-GWM {
        font-size: 15px;
    }
}
@media (max-width: 1300px){
    .text-about-GWM {
        font-size: 14px;
    }
}
@media (max-width: 1150px){
    .text-about-GWM {
        font-size: 13px;
    }
}
@media (max-width: 980px){
    .text-about-GWM {
        font-size: 12px;
    }
}
@media (max-width: 850px){
    .text-about-GWM {
        font-size: 11px;
    }
}
@media (max-width: 720px){
    .text-about-GWM {
        font-size: 10px;
    }
}
@media (max-width: 600px){
    .text-about-GWM {
        font-size: 9px;
    }
}
@media (max-width: 480px){
    .text-about-GWM {
        font-size: 8px;
    }
}
@media (max-width: 390px){
    .text-about-GWM {
        font-size: 7px;
    }
}

@media (max-height: 885px){
    .background-photo {
        max-height: 100vh;
        min-height: 885px;
    }
    main {
        max-height: 100vh;
        min-height: 885px;
    }
    .text-about-GWM {
        max-height: 100vh;
        min-height: 885px;
    }
}


/* @media (max-width: 830px){
    .nav-bar {
        width: 200px;
        height: 40px;
        margin-top: 2%;
        margin-right: 40px;
    }
    
    .language-bar {
        font-size: 16px;
        width: 120px;
        height: 40px;
    }
    
    .lan-icon {
        margin-left: 80px;
    }
    .lang-select {
        font-size: 12px;
        gap: 4px;
        margin-left: -84px;
    }
    
    .lang-select li {
        padding-right: 4px;
    }
    .arrow-icon {
        right: 96px;
    }
} */