body {
    background-color: black;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

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

.logo {
    margin-bottom: 20px; /* Add spacing between the logo and buttons */
}

.logo img {
    max-width: 100%;
}

.buttons {
    margin-top: 20px;
    display: flex;
}

.email-button, .instagram-button {
    background-color: #f84f06;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px; /* Add spacing between the buttons */
}

.email-button:hover, .instagram-button:hover {
    background-color: #d13d03;
}
