body,
html {
  background-color: #2E3440;
  margin: 0 auto;
  padding: 0;
  color: white;
  text-align: center;
  max-width: 800px;
  height: 100%;
}

body{
  padding: 0 30px;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; 콘텐츠가 위로 정렬되도록 설정 */
}

header{
  min-height: 41px;
  max-height: 41px;
}

/* //////////////// */
/* Main 부분 */
main {
  /* background-color: blue; */
  flex-basis: 80%;  
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  width: 100%;
  text-align: start;
}

#top_ten_title{
  margin: 5vh 0 1vh 0;
}

.card_container{
  display: flex;
  border-bottom: 1px solid #555555;
  /* 커서 안변하게 */
  cursor: default;
  
}

.card_container:hover{
  background-color: #3B4252;
}

.ranking_number_container{
  flex: 2;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.medal_image{
  display: flex;
  justify-content: center;
  position: absolute;
  top: 1rem;
}

.ranking_number{
  font-size: 2rem;
}

.ranking_change{
  font-size: 10px;
  color: red;
}

.ranking_change img{
  width: 10px;
  height: auto;
}


.card_image_container{
  flex: 4;
  /* background-color: blue; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_image_container img{
  max-width: 80px;
  max-height: 80px;
  border-radius: 2px;
  /* height: auto; */
}

.contents_container{
  flex: 10;
  /* background-color: green; */
  padding: 20px 3vw;
  color: #9AA3B4;
  font-size: 1rem;
}
.contents_container p{
  margin: 5px 0;
}

.card_name{
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #F2F4F7;
}

.card_name img{
  width: 10px;
  height: auto;
}

#cardList{
  padding-bottom: 20px;
}

/* //////////////// */
/* Footer 부분 */
