/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set background and font styles */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6B73FF 10%, #000DFF 100%);
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

/* Container for the content */
.container {
    max-width: 600px;
}

/* Heading style */
h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* Subheading style */
p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Email link style */
.contact-email {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 5px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.3s, color 0.3s;
}

.contact-email:hover {
    background: #ffffff;
    color: #000DFF;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1em;
    }
}