/* styles.css */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('./image/background.jpg') no-repeat center center/cover;
    text-align: center;
    color: white;
    font-family: 'elza', sans-serif;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
}
.content {
    z-index: 2;
    padding: 20px;
}
.logo img{
    width: 287px;
    margin-bottom: 50px;
}
.subtitle {
    font-size: 53px;
    margin: 20px 0;
    font-weight: 600;
    font-family: 'elza', sans-serif;
}
.email {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-family: 'elza', sans-serif;
    font-weight: 300;
}
.email a {
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
}
@media (max-width: 768px) {
    .logo { font-size: 1.5em; }
    .subtitle { font-size: 1em; }
    .email {
        font-size: 14px;
    }
}
