@font-face {
    font-family: 'Kanit';
    src: url(../assets/font/Kanit/Kanit-Light.ttf);
}

body {
    margin: 0;
    padding: 0;
    background-color: #aec2f5;
     /* overflow-x: hidden; */
    font-family: 'Kanit';
}

body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

html.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

.overlay_content.no-scroll {
    overflow: hidden;
    height: 100%;
}

.content_body.no-scroll {
    overflow: hidden;
    height: 100%;
}

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.background_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.icon_headline {
    position: absolute;
    top: 50%;            
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: hsla(0, 0%, 100%, 0.37);
    border-radius: 20px;
}

.pokeball_icon {
    height: 60px;
    margin-right: 10px;
}

.headline {
    font-family: 'Kanit';
    font-weight: bold;
    font-size: 30px;
    margin-left: 10px;
}

.search {
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    max-width: 1920px;
}

.search_font {
    font-family: 'Kanit';
    margin-left: 10px;
    width: 200px;
}

.content_body {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 80px;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
}

.more_button {
    font-family: 'Kanit';
    margin-top: 30px;
    font-weight: bolder;
    display:block;
    width: 80%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.more_button:hover {
    cursor: pointer;
}

footer {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70px;
    background-color: #5d52bb;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 10px;
  }
  
.pokeball_icon_footer {
    height: 25px;
    margin-bottom: 2.5px;
    background-color: hsla(0, 0%, 100%, 0.37);
    padding: 5px;
    border-radius: 20px;
}

.source {
    color: white;
}

.d-none {
    display: none !important;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #5d52bb;
    z-index: 9999;
}

.start-screen {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100vh;
    width: 100%;
    max-width: 1920px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


header, .start-screen, #content_body, #loadingScreen, footer {
    max-width: 1920px;
    margin: 0 auto;
}
  


