@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}
html,body{
    height: 100%;
    width: 100%;
}

header {
    /* background-color: #0073e6; */
    color: #000000;
    padding: 20px;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2.2em;
}
main {
    width: 83%;
    padding: 2vw;
    margin: 2vw auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

section h2 {
    color: #005bb5;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 5px;
    margin-top: 3vw;
}

section p{
    text-align: justify;
    margin-top: 1vw;
}
ul {
    list-style-type: square;
    margin-left: 3vw;
    margin-top: 1vw;
}
footer {
    text-align: center;
    background-color: #005bb5;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
}
footer p {
    margin: 0;
    font-size: 0.9em;
}
a {
    text-decoration: none;
    color: black;
}

.img-div{
    height: 70vh;
    width: 100%;
    margin-top: 1vw;
    margin-bottom: 2vw;
    overflow: hidden;
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.last-img{
    height: 90vh;
    width: 100%;
    overflow: hidden;
}
.last-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}



@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    main {
        width: 95%;
        padding: 4vw;
    }

    section h2 {
        font-size: 1.2em;
        margin-top: 4vw;
    }
    section h3 {
        font-size: 3.7vw;
        margin-top: 4vw;
    }

    section p {
        font-size: 0.9em;
        margin-top: 2vw;
    }

    ul {
        margin-left: 5vw;
        font-size: 0.9em;
    }

    footer {
        padding: 15px 0;
    }

    footer p {
        font-size: 0.8em;
    }

    .img-div {
        height: 30vh;
    }
    .img-div1 {
        height: 80vh;
    }
}