.content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

h1 {
    color: #333;
    font-size: 64px;
    margin: 0;
}

h2 {
    color: #949494;
    font-weight: normal;
    margin-bottom: 50px;
}

.redirect-button {
    text-decoration: none;
    color: white;
    background-color: #1bc65b;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    transition: background-color 0.2s ease;
}

@media (hover: hover) {
    .redirect-button:hover {
        background-color: #28a745;
    }
}