* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Protest Strike", sans-serif;
}

body {
    min-height: 100vh;
    background: url('/IMG_5281.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    display: flex;
    align-items: center;
    z-index: 100;
    justify-content: space-between;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.1);
    backdrop-filter: blur(50px);
    z-index: -1;
}

.logo {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.navbar a {
    font-size: 1rem;
    font-family: "Noto Sans Thai", sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 700;
    margin-left: 2.5rem;
}
#check {
    display: none;
}
.icons {
    position: absolute;
    font-size: 2.8rem;
    right: 5%;
    color:  white;
    cursor: pointer;
    display: none;
}

/* BREAKPOINTS */
@media (max-width: 1090px) {
    .header {
        padding: 1.3rem 5%;
    }
}

@media (max-width: 967px) {
    .icons {
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon {
        display: none;
    }
    .icons #close-icon {
        display: none;
    }
    #check:checked~.icons #close-icon {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0,0,0,.1);
        backdrop-filter: blur(50px);
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbar {
        height: 17.7rem;
        
    }
    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }
}
#check:checked~.navbar a {
   transform: translateY(0);
   opacity: 1;
   transition-delay: calc(.15s * var(--i));
}

.card{
    margin: 5rem;
}
.name {
    display: flex;
}
.lll {
    display: flex;
}
.jjj {
    padding-top: 5rem;
}
.card-text{
    font-family:"Noto Serif Thai",sans-serif
}
.card{
    width: 18rem;
    
}
.card-img-top{
    height: 20rem;
}
@media (max-width:415px){
    .card{
        width: 15rem;
        
    }
    .card-img-top{
        height: 17rem;
    }
        
} 


