body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #123733;
    font-family: Arial, sans-serif;
}

.logo {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    margin-top: 550px;
    padding: 10px 20px;
    width: 800px;
    height: 800px;
}

.email-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    margin-top: 400px;
    padding: 10px 20px;
    background-color: #4F7571;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.email-button:hover {
    background-color: #FCD842;
}