body {
    background-color: rgb(137, 137, 137);
}

.container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center; 
    height: 100vh; 
}

.backgroundd {
    margin-right: 20px; 
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between buttons */
}

.mybutton {
    width: 400px; 
    height: 100px; 
    background-color: blue; 
    color: white;
    border: none;
    cursor: pointer;
    display: flex; /* Center text in button */
    justify-content: center; 
    align-items: center; 
    font-size: 24px; /* Increase font size */
    border-radius: 15px; /* Round the corners */
}

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

.mybutton:hover {
    background-color: darkblue;
}

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