* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    background: #ffffff;
    color: #000000;
}

.logo {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.content {
    max-width: 520px;
}

.title {
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 800;
    font-style: italic;
    margin: 0;
    letter-spacing: -0.5px;
}

.subtitle {
    margin-top: 8px;
    font-size: clamp(20px, 3vw, 26px);
    color: #444444;
}

.links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.links a:hover {
    transform: translateX(4px);
    opacity: 0.7;
}

@media (max-width: 600px) {
    .logo {
        width: 72px;
        top: 24px;
    }
}

  .info-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: black;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    text-decoration: none;
  }
  .info-button:hover {
    background-color: #333;
  }
