*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Raleway", sans-serif;
    color: #EAEAEA;
    background-color: #54648e;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.email {
    font-size: 1.1rem;
    font-weight: 200;
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email:hover {
    color: #FFFFFF;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.1rem;
    }
    .email {
        font-size: 0.7rem;
    }
}