/* styles.css */
@font-face {
    font-family: 'Avenir LT Std';
    src: url('./font/AvenirLTStd-Book.woff2') format('woff2'),
        url('./font/AvenirLTStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    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: 182px;
    margin-bottom: 20px;
}
.subtitle {
    font-size: 115px;
    margin: 5px 0;
    font-weight: bold;
    font-family: "Cormorant", serif;
}
.email {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-family: Avenir LT Std;
    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: 2.5em; }
    .email {
        font-size: 13px;
        line-height: 1.5em;
    }
}
