html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #fffde7; /* Light yellow background */
    color: #000000; /* Black text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #f57f17; /* Dark yellow for the title */
    margin: 0;
}

.text {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #ffb300; /* Medium yellow for the description */
    margin: 20px 0;
}

.link-box {
    background-color: #fff9c4; /* Very light yellow for the link box */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.link-box p {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #f57f17; /* Dark yellow for the link text */
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
