@font-face {
  font-family: 'Yaldevi';
  src: url('../fonts/Yaldevi/static/Yaldevi-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Yaldevi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f2f3f8;
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 500px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  margin: 10px 0 0;
  font-size: 24px;
}

p {
  color: #666;
  margin: 4px 0 20px;
}

.icons {
  margin: 10px 0 30px;
}

.icons a {
  margin: 0 8px;
  text-decoration: none;
  color: #97a1ac;
  font-size: 30px;
}

.button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.button-list a {
  background-color: #013260;
  color: white;
  padding: 20px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  font-size: 15px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-list a:hover {
  background-color: #002649;
}

.footer {
  margin-top: 40px;
  font-size: 12px;
  color: #888;
}

.footer img {
  height: 20px;
  margin-top: 5px;
}

.handle {
  display: block;
  color: #666;
  text-decoration: none;
  font-size: 16px;
  margin: 4px 0 20px;
}

.handle:hover {
  text-decoration: underline;
}