@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff')
    format('woff');
  font-weight: 400;
  font-style: normal;
}

* {
  font-family: 'Pretendard-Regular';
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  background: rgb(238, 174, 202);
  background: linear-gradient(
    90deg,
    rgba(238, 174, 202, 1) 0%,
    rgba(148, 187, 233, 1) 100%
  );
  overflow: hidden;
  padding: 40px 0;
}

h1 {
  text-align: center;
  font-size: 50px;
  color: white;
  font-weight: 800;
  text-shadow: 1px 0 5px #9a9d9f;
}

#txt_welcome {
  text-align: center;
  margin-bottom: 50px;
  font-size: 24px;
  line-height: 35px;
  color: #262626;
}

.cards-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  overflow: hidden;
  background-color: rgb(239, 239, 239);
  box-shadow: 1px 0 5px #9a9d9f;
  &:hover {
    opacity: 0.8;
  }
}

.card_title {
  font-size: 20px;
  color: #262626;
  background-color: transparent;
  outline: none;
  border: none;
  padding: 20px;
}

.card_img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
