.main--content-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5% 5%;
    margin-top: 10dvh;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 1% 5%;
        gap: 4dvh;
        margin-top: 20dvh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 1% 5%;
        gap: 25px;
        margin-top: 12dvh;
    }

    @media (min-width: 1000px){
        padding: 2% 8%;
        gap: 25px;
        margin-top: 17dvh;
    }
}

.page--title{
    color: #4b3d33;
    font-family: "Montserrat";
    padding: 2% 5%;
    font-size: 2vh;
    text-align: center;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 3% 1%;
        font-size: 2.5vw;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 2% 1%;
        font-size: 2.5vw;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 1.5vw;
    }
}

#page--subtitle{
    padding: 2% 5%;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 3% 1%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 2% 1%;
    }
}

.experimental-class--button{
    color: white;
    background-color: #fe6300;
    border: none;
    font-size: 9px;
    border-radius: 5px;
    padding: 4% 1%;
    font-family: "Montserrat";
    font-weight: 700;

    @media (max-height: 600px) and (orientation: landscape) {
        font-size: 10px;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 12px;
    }

    @media (min-width: 1000px){
        font-size: 14px;
    }
}

.experimental-class--button:hover{
    background-color: #fe5000;
    cursor: pointer;
}

.text--section{
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
    width: 100%;
    text-align: justify;
    color: #4b3d33;
    font-family: "Montserrat";
    font-size: 12px;

    @media (max-height: 600px) and (orientation: landscape) {
        padding: 0% 0% 2% 0%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        font-size: 18px;
        padding: 0% 0% 2% 0%;
    }

    @media (min-width: 1000px){
        font-size: 20px;
    }
}

.books--section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    flex: 1;
    padding: 8% 0%;

    @media (max-height: 600px) and (orientation: landscape){
        padding: 0%;
        width: 100%;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 0%;
    }

    @media (min-width: 1000px){
        padding: 0% 8%;
        gap: 0.5%;
        margin-top: 5%;
        width: 85%;
        height: 27dvh;
    }
}

.book-image--container{
    display: flex;
    height: 20dvh;
    justify-content: center;
    align-items: center;
    padding: 2% 0%;

    @media (max-height: 600px) and (orientation: landscape){
        height: 40dvh;
    }

    @media (min-width: 768px) and (min-height: 600px) {
        padding: 2% 0%;
        height: 25dvh;
    }

    @media (min-width: 1000px){
        padding: 0%;
        height: 27dvh;
    }

}

.book-image--container > img, .book-image--container--horizontal > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.book-image--container > img:hover{
    cursor: pointer;
    transform: scale(1.05);
}

.english--label{
    font-family: "Montserrat";
    font-size: 10px;
    font-weight: 600;
    padding-bottom: 5%;
    text-align: center;

    @media (min-width: 768px) and (min-height: 600px) { 
        font-size: 15px;
    }

    @media (min-width: 1200px){
        width: 45%;
        font-weight: 500;
        padding-bottom: 0%;
    }
}

#italian--container{
    @media (max-height: 600px) and (orientation: landscape){
        width: 60%;
    }

    @media (min-width: 768px) and (min-height: 600px) { 
        width: 100%;
    }

    @media (min-width: 1200px){
        width: 45%;
    }
}

#spanish--container{
    @media (max-height: 600px) and (orientation: landscape){
        width: 60%;
    }

    @media (min-width: 768px) and (min-height: 600px) { 
        width: 100%;
    }

    @media (min-width: 1200px){
        width: 45%;
    }
}

#french--container{
    @media (max-height: 600px) and (orientation: landscape){
        width: 60%;
    }

    @media (min-width: 768px) and (min-height: 600px) { 
        width: 100%;
    }

    @media (min-width: 1200px){
        width: 45%;
    }
}

#cambridge--container{
    @media (max-height: 600px) and (orientation: landscape){
        width: 80%;
    }

    @media (min-width: 768px) and (min-height: 600px) { 
        width: 75%;
    }

    @media (min-width: 1000px){
        width: 60%;
    }
}

#oxford--container{
    width: 75%;
  
    @media (max-height: 600px) and (orientation: landscape){
        width: 80%;
    }

    @media (min-width: 768px) and (min-height: 600px) { 
        width: 90%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    @media (min-width: 1000px){
        display: flex;
        width: 65%;
    }

}