.noto-serif{
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1, h2 {
  margin: 0;
  padding: 0;
}

.content {
  text-align: center;
}

.title{
  font-family: "Noto Serif"; 
  font-size: 45px;
  text-align: center;
  color: #000000;
  margin: 20px 0;
}

.link {
  font-family: "Noto Serif";
  font-size: 18px;
  color: #0066cc;
  text-decoration: underline;
  margin-top: 30px;
  display: block;
}

.link:hover {
  color: #004499;
}

/* Mobile styles */
@media (max-width: 768px) {
  body {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    justify-content: flex-start;
    align-items: center;
    padding-top: 20%;
  }
  
  .content {
    width: 90%;
    max-width: 400px;
  }
  
  .title {
    font-size: 28px;
    line-height: 1.2;
    margin: 15px 0;
  }
  
  .link {
    font-size: 20px;
    margin-top: 25px;
  }
}

/* iPhone specific adjustments */
@media (max-width: 430px) {
  body {
    padding-top: 15%;
  }
  
  .title {
    font-size: 24px;
  }
}

