body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #000; /* Change this to make the page background black */
}

.rounded-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #fff; /* White border */
    transition: background-color 0.3s ease;
}

.rounded-button:hover {
    background-color: #333;
}
