@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,500;1,400&family=Poppins&family=Roboto&display=swap');
html,body{
    width: 100%;
    height: 100%;
    margin:0;
    background-color: #AFE1AF;
}

html{
    scroll-snap-type: y mandatory;
}

section{
    height: 100vh;
    scroll-snap-align: start;
}

.header{
    width: 100%;
    height: 100%;
    display: flex;
}

.header > *{
    width: 33.33%;
}

.about{
    padding: 5%;
    height:auto;
    font-size: xx-large;
    font-family: 'Poppins';
    text-align: justify;
}

.image{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.group-photo{
    max-width: 70%;
    height: auto;
}

.winners{
    width: 100%;
    height: auto;
    min-height: 100%;
}

.title{
    font-family: 'Roboto';
    text-align: center;
    font-size: 400%;
    letter-spacing: 5px;
    padding: 1%;
    border: 10px solid black;
}

.sub-title{
    letter-spacing: 5px;
    padding: 1%;
    font-size: 200%;
    font-family: 'Roboto';
}

.sub-title::before{
    position: absolute;
    width: 80px;
    content: '';
    height: 3px;
    background-color: black;
}

.winner-details{
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.winner-event{
    height: 70vh;
}

.card{
    width: 20%;
    height: 100%;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: 	hsl(129, 28%, 29%);
    color: white;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-img{
    height: 30%;
}

.card-title{
    width: 110%;
    font-size: 175%;
    padding: 2% 0 2% 0;
    font-family: 'Open sans';
    letter-spacing: 5px;
    text-align: center;
    background-color: #9FE2BF;
    margin-left: -1%;
}

.card-name{
    font-family: 'Open sans';
    letter-spacing: 5px;
    text-align: center;
}

@media (max-width:426px) {
    .header{
        height: 30%;
    }

    .about{
        font-size: large;
    }

    .group-photo{
        max-width: 100%;
    }

    .title{
        font-size: 200%;
    }

    .sub-title{
        font-size: 150%;
        letter-spacing: 2px;
    }
    .sub-title::before{
        width: 50px;
    }

    .winner-event{
        height: 230vh;
        margin-top: 20vh;
    }

    .winner-details{
        height: 95%;
        min-height: 1300px;
        flex-direction: column;
        justify-content: space-around;
    }

    .card{
        min-height: 380px;
        height: 30%;
        margin-bottom: 10%;
    }
}
