/*@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Niramit:wght@300;400&display=swap');

body{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    /*font-family: 'Poppins', sans-serif;*/
    font-family: 'Niramit', sans-serif;
    color: black;
    line-height: 1.2;
}


#header{
    position: fixed;
    width: 100%;
    height: 57px;
    top: 0;
    background-color: #e3e3e3;
    z-index: 97;
    box-shadow: 0px 1px 10px black;
}

#header_banner{
    position: relative;
    height: 75%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#content{
    position: relative;
    width: 90%;
    left: 5%;
    top: 57px;
    bottom: 0;
    overflow-y: auto;
    padding: 15px;
}

@media (min-width: 640px) {
}
@media (min-width: 768px) {
    body{
        background-image: url(./images/Background/landing-page-4.jpg);
        background-attachment: fixed;
        background-size: cover;
    }
    #header_banner{
        position: relative;
        height: 100%;
        width: auto;
        left: 50%;
        top: 0%;
        transform: translate(-50%, -0%);
    }
    #content{
        position: relative;
        width: 70%;
        left: 15%;
        top: 57px;
        bottom: 0;
        overflow-y: auto;
        padding: 15px;
        background-color: rgba(227, 227, 227, .8);
    }
}
@media (min-width: 1024px) {
    #content{
        position: relative;
        width: 60%;
        left: 20%;
        top: 57px;
        bottom: 0;
        overflow-y: auto;
        padding: 15px;
        background-color: rgba(227, 227, 227, .8);
    }
}
@media (min-width: 1280px) {
    #content{
        position: relative;
        width: 30%;
        left: 35%;
    }
}
