@import url("https://spoqa.github.io/spoqa-han-sans/css/SpoqaHanSans-kr.css");
@import url("https://rsms.me/inter/inter.css");
    
* {
    outline: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: '-apple-system', 'BlinkMacSystemFont', 'Apple SD Gothic Neo', 'Inter', 'Spoqa Han Sans', 'Segoe UI', Sans-Serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    transition: background-color 1s;
    background-color: #242424;
    color: #ffffff;
}


/*body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 1s;
}*/
.dark{
    background-color: #242424;
    color: #ffffff;
}

.sun, .moon{
    font-size: 8rem;
    width: fit-content;
    height: fit-content;
    text-align: center;
}
.moon{
    position: absolute;
    inset: 0;
}
.moon-logo{
    opacity: 0;
    transform: translateY(0%) rotateZ(0deg);
    transition: all 1s ease-out;
}
.sun-logo{
    opacity: 1;
    transform: translateY(0) rotateZ(0deg);
    transition: all 1s ease-out;
}
.animate-sun{
    opacity: 0;
    transform: translateY(0%) rotateZ(0deg);
}
.animate-moon{
    opacity: 1;
    transform: translateY(0%) rotateZ(0deg);
}
.animate-moon path{
  fill: white;
}
.animate-sun path{
  fill: white;
}

.header {
    height: 65px;
    width: 100%;
    background-color: #333;
    color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 0px;
    z-index: 1;
}

.h-right a {
    color: #ffffff;
}

.h-left {
    padding-left: 25px;
    font-weight: bold;
}

.h-right {
    width: 200px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
}

.main {
    width: 100%;
    height: 100%;
    text-align: center;
}


.card {
	height: 200px;
	width: 300px;
  margin: 20px;
	border-radius: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	position: relative;
	display: inline-block;
	text-align: center;
}

.card a {
	color: #98b5e3;
}

.card a:hover {
	color: #607596;
}

.header a {
	color: #ffffff;
}

.header a:hover {
	color: #d1d1d1;
}

.card-text {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: block;
}

a {
    text-decoration-line: none;
}

/*::-webkit-scrollbar {
  width: 10px;
  bottom: 0px;
}
 
::-webkit-scrollbar-track {
  background: #545454;
  border-radius: 5px;
}
 
::-webkit-scrollbar-thumb {
  background: linear-gradient(#c2e59c, #64b3f4);
  border-radius: 5px;
}*/

::-webkit-scrollbar {
    width: 0px;
    background-color: transparent;
}

::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #242424;
    border: 2px solid #242424;
    border-radius: 10px;
}

/* html {
  color: #343434;
}
html.dark {
  background: #121212;
  color: #bbb;
} */

.new {
  background: #f50a39;
  height: 25px;
  width: 50px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  left: 125px;
}
.new2 {
  background: #f50a39;
  height: 25px;
  width: 80px;
  border-radius: 5px;
  text-align: center;
  position: relative;
  left: 110px;
}

.at {
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #607596;
  cursor: pointer;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  height: 20px;
  width: 35px;
}

@keyframes sea {
  0% {
	height: 40px;
  	width: 20%;
  	text-align: left;
  	padding-left: 10px;
  }
  100% {
	height: 40px;
  	width: 40%;
  	text-align: left;
  	padding-left: 10px;
  }
}

.Search {
  border-radius: 10px;
  height: 40px;
  width: 20%;
  border: 3px solid #98b5e3;
  cursor: pointer;
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.Search:focus {
  cursor: text;
  animation-name: sea;
  animation-duration: 0.2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
  animation-play-state: running;
}