@font-face {
    font-family: pattaya;
    src: url(./lib/font/Pattaya-Regular.ttf);
}

body {
    background-color: #2D3436;
    background-image: url("./assets/background.png");
    margin: 0;
    /* margin-top: 4rem; */
    font-family: Helvetica, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.footer-container {
    position: absolute;
    z-index: 3;
}

.footer-blurb-container {
    position: relative;
}

.welcome-message-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    right: auto;
    left: auto;
    height: 100%;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: #56676d9c;
}

.welcome-message-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid white;

}

.welcome-message_1 {
    position: relative;
    display: flex;
    font-weight: normal;
    color: white;
    font-size: 100px;
    font-family: pattaya;
    margin: 0;
}

.welcome-message_2 {
    position: relative;
    display: flex;
    font-weight: normal;
    font-size: 50px;
    color: white;
    font-family: pattaya;
    margin: 0;
}

.sliderjs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 5rem; */
    height: 100vh;
}

.slider {
    height: 100%;
    width: 100vw;
    /* overflow: hidden; */
}

.slider img {
    filter:grayscale(100%);
    height: 100vh;
    min-width: 100vw;
    overflow: hidden;
    /* width: auto;
    height: 100vh; */
    /* position: relative; */
    
}

/* @media only screen and (max-width: 770px) {
    .slider {
        position: relative;
        right: 10rem;
    }
} */
/* @media only screen and (max-width: 1080px) {
    .slider {
        height: 100vh;
        width: 100%;
        overflow: hidden;
    }
} */

/* @media screen and (max-width: 3000px) and (min-width: 1081px) {
    .slider {
        width: 0;
        height: 0;
    }
} */

@media only screen and (max-width: 426px) {
    .slider {
        width: 0;
        height: 0;
    }
    
}

.home-container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.home-box {
    display: flex;
    width: 20rem;
    height: fit-content;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin-bottom: .5rem;
    margin-top: .5rem;
    background: #DDDDDD;
    box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.493);
}

.home-header {
    font-size: x-large;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 1.1rem;
    margin-top: 1rem;
    background-color: #DDDDDD;
    border-radius: 10px;
}

.home-header h1 {
    font-weight: normal;
    border-bottom: 1px solid black;
    padding-bottom: .5rem;
}

.notice-container {
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 1rem;
    max-width: 25rem;
}

#welcome-img {
    height: 25rem;
    width: auto;
    display: flex;
    margin-bottom: 5rem;
}

@media only screen and (max-width: 426px) {
    .welcome-message_1 {
        font-size: 80px;
    }

    .welcome-message_2 {
        font-size: 50px;
    }

    .home-box {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 321px) {
    .welcome-message_1 {
        font-size: 70px;
    }

    .welcome-message_2 {
        font-size: 40px;
    }
}

@media only screen and (max-height: 361px) {
    body{
        overflow-y: hidden;
    }   
}

@media only screen and (max-height: 346px) {
   .welcome-message_1 {
       font-size: 65px;
   }
   .welcome-message_2 {
        font-size: 40px;
    } 
    .welcome-message-box {
        padding-bottom: .5rem;
    }
}

/* scrollbar styling */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #DDDDDD;
}

::-webkit-scrollbar-thumb {
    background: #5d6e72;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #56676d;
}