@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto';
}

body{
    background-image: url(./assets/gadh-background-mobile.jpg);
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 325px;
    max-height: 90%;
    background-color: #fff;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.637);
}

.container .img-area img{
    width: 150px;
    height: 150px;
    border-radius: 15px;
}

.container .txt-area h1{
    color: #000a25;
    font-size: 25px;
    margin: 30px 0 8px;
}

.container .txt-area p{
    margin-bottom: 30px;
}

button {
    height: 50px;
    width: 200px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Roboto';
    background-color: #000a25;
    color: #fff;
    border: none;
    border-radius: 6px;
}

.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content{
    width: 300px;
    max-height: 75%;
    background-color: #fefefe;
    border: 1px solid #888;
    border-radius: 8px;
    padding: 15px;
    margin: 20% auto;
}
   
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-page {
    display: none;
}

.modal-title-area h2{
    margin-top: 30px;
}
.modal-title-area h3{
    margin-bottom: 20px;
    margin-top: 30px;
}

.modal-txt-area p{
    margin-top: 10px;
    margin-bottom: 10px;
}

.active {
    display: block;

}

.navigation{
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav {
    margin: 10px 20px 30px;
    width: 55px;
    height: 55px;
    border-radius: 100px;
    border: 1px solid #000a25;
    cursor: pointer;
}

.nav i {
    display: flex;
    justify-content: space-evenly;
    margin: 12px 0;
    font-size: 30px;
    color: #000a25;
}
.previous-page1 {
    border: 1px solid #aaa;
    cursor: not-allowed;
}

.previous-page1 i{
    color: #aaa;
}

.next-page3 {
    border: 1px solid #aaa;
    cursor: not-allowed;
}

.next-page3 i{
    color: #aaa;
}

@keyframes loadingAnimation {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

#loadingText {
    margin: 155px 0px;
    font-style: italic;
    font-size: 30px;
}

.hidden {
    display: none;
}

@media screen and (max-width: 425px) {

}

@media  screen and (min-width: 768px) {
    body {
        background-image: url(./assets/gadh-background.webp);
        background-repeat: no-repeat;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        margin: 0;
    }

    .container {
        width: 600px;
        margin: auto;
        background-color: #fff;
        padding: 20px;
        border-radius: 25px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.637);
    }

    .container img {
        width: 150px;
        height: 150px;
        border-radius: 15px;
    }

    .container .txt-area h1{
        color: #000a25;
        font-size: 30px;
        padding: 0 5px;
    }

    .container .txt-area p{
        color: #000a25;
        font-size: 16px;
    }
    
    .modal-content {
        background-color: #fefefe;
        margin: 9% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 55%;
        height: 65%;
        border-radius: 8px;
    }

    .modal-title-area h2{
        font-size: 25px;
        color: #000a25;
        margin: 50px 0 30px;
    }
}
