* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Protest Strike", sans-serif;
}
html {
    will-change: auto;
}

body {
    min-height: 100vh;
    background: url('https://cdn.pixabay.com/photo/2017/08/24/03/41/starry-sky-2675322_1280.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;
}


.col-md-6 {
    width: 480px;
    height: 380px;
}
.Mai_container {
    margin-top: 2rem;
    
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 80%
}
.Mai {
    
    color: rgb(255, 255, 255);
    font-size: 15px;
    backdrop-filter: blur(50px);
    background-color: rgba(255, 255, 255, 0.14);
    font-family:"Noto Serif Thai",sans-serif

}
.wee {
    background-color: antiquewhite;
}

.bla{
    /* width: 100%;
    height: 300vh; */
    margin-top: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    /* filter: blur(5px);
    position: absolute;   */
}

.ro{
    padding-left: 1rem;
    color: #ffc436;
    font-family: "Pridi",sans-serif;
    
}
.image-container img {
    
    margin: 5px;
    width: 25%;
    height: auto;
}
.ko{
    padding-left: 1rem;
    color: #ffc436;
    font-family: "Pridi",sans-serif;
}

.bb{
    margin-left: 50%;
    transform: translateX(-50%);
    color: #ffc436;
    font-family: "Pridi",sans-serif;
}
.container {
    display: flex;
    align-items: center;
    color: rgb(255, 255, 255);
    padding-left: 2rem;

}
.text {
    flex: 1;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 80%
}
.image img {
    
    margin-left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: fit-content;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.mmm {
    
    align-items: center;
    color: rgb(255, 255, 255);
    padding-left: 2rem;

}
.aaa {
    transform: translateX(-50%);
    margin-left: 50%;
    margin-top: 2rem;
    
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    width: 80%

}
.i img {
    
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 80%;
    height:fit-content;
   
   
   
   
}
.text p{
    margin-top: 2rem
}
.ll{
    font-size: 15px;
    color: rgb(255, 255, 255);
   
    backdrop-filter: blur(50px);
    background-color: rgba(255, 255, 255, 0.14);
    font-family:"Noto Serif Thai",sans-serif
}
.pp {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
   

}

iframe {
    margin-top: 3rem;
    width: 80%;
    height: 500px;
    /* filter: invert(100%); */
    
}
.vv{
    padding-left: 2rem;
    color: rgb(255, 255, 255);
    padding-right: 2rem;
    padding: 1rem;
    padding-top: 1rem;
    backdrop-filter: blur(50px);
    background-color: rgba(255, 255, 255, 0.14);
    font-family:"Noto Serif Thai",sans-serif
 
}
footer{
    background-color:#ffc436;
    padding: 2px;
    text-align: center;

}





/* 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));
}

    