body {
    font-family: "Arial", sans-serif;
    background-color: #ffd700; 
    color: #001f3f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    transition: background-color 0.3s ease, color 0.3s ease; 
    padding: 20px;
    box-sizing: border-box;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a !important; 
        color: #ededed !important; 
    }
}

.container {
    text-align: center;
    width: 90%;
    max-width: 960px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.medium-title {
 font-size: 1.6rem; 
}

.small-text {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
}

.button {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 15px;
    background-color: transparent;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease; 
    font-size: 1rem;
}

.button {
    border: 1.5px solid #001f3f; 
    color: #001f3f; 
}

.button:hover {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3); 
}

@media (prefers-color-scheme: dark) {
    .button {
        border: 1.5px solid #ededed;
        color: #ededed;
    }

    .button:hover {
        box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.3); 
    }
}


@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.8rem;
    }
    .button {
      font-size: 0.9rem;
      padding: 6px 12px;
    }
    .medium-title {
     font-size: 1.2rem; 
    }
    .small-text {
    font-size: 0.8rem;
    }
}