body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #f5f5f5;
}

.container {
    text-align: center;
    background: #2d2d2d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.container h1 {
    margin-bottom: 30px;
    font-size: 36px;
    color: #ffffff;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px; /* Add 40px vertical space */
}

.button {
    display: block;
    width: 180px;
    height: 180px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background: #0056b3;
    transform: translateY(-5px);
}

.button span {
    text-align: center;
}

.contact {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Add 40px vertical space */
}

.contact-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Set the width of the button */
    height: 40px; /* Set the height of the button */
    background-color: #007bff;
    color: #ffffff;
    border-radius: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button img {
    width: 20px; /* Set the width of the SVG icon */
    height: auto; /* Maintain the aspect ratio */
}


.contact-button:hover {
    background-color: #0056b3;
}


