main{
    font-family: "Montserrat", Arial, sans-serif;
}

.main-bg{
    margin-top: -6.2rem;
    width: 100%;
    height: 53rem;
    background-image: url(../assets/images/mountain-temple.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;

    margin-bottom: -6rem;
}

.about{
    margin-top: 5rem;
    max-width: 50rem;
}

.about li{
    font-weight: 400;
    font-style: italic;
    text-shadow: 3px 1px 10px black;
}

.about a{
    display: block;
    margin-top: 3rem;

    text-align: center;
    text-decoration: none;
    color: var(--text-white-for-bg-red);
    font-weight: bold;
    font-family: "Montserrat", Arial, sans-serif;
    text-shadow: 3px 1px 8px var(--bg-black-primary);

    padding: 7px;
    border-radius: 10px;
    background-color: var(--text-red-hover);
    border: 1px solid var(--text-white-for-bg-red);
}

.about a:hover{
    color: var(--text-white-for-bg-red-hover);
    background-color: var(--bg-btn-red-hover);

}

@media (min-width: 2000px){
    .main-bg{
        height: 82vh;
    }

    .about{
        margin-top: 20rem;
    }
}

@media (max-width: 768px){
    .main-bg{
        height: 87vh;
    }

    .about{
        margin-top: 40rem;
        max-width: 60rem;
    }
}