body {
    font-family: Roboto;
    background-color: rgb(203, 203, 203);
    margin: 0;
    padding: 0;
}

h1 {
    color: black;
    text-align: center;
}

.one {
    background-color: lightgrey;
    text-align: center;
    font: Roboto;
    width: 700px;
    border: 5px solid black;
    padding: 50px;
    margin: 50px auto; 
}

.button-container {
    display: flex;
    justify-content: center; /* Center button container horizontally */
    margin-top: 20px; /* Space above the button */
}

.home-button {
    width: 300px; 
    height: 60px; 
    background-color: blue; 
    color: white;
    border: none;
    cursor: pointer;
    display: flex; /* Center text in button */
    justify-content: center; 
    align-items: center; 
    font-size: 20px; 
    border-radius: 10px; /* Round the corners */
}

.home-button a {
    text-decoration: none;
    color: white; /* Make the link text white */
}

.home-button:hover {
    background-color: darkblue;
}
