body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Source Sans Pro", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    position: relative;
}

body {
    background: #1a1a1a url("images/bg-highres.webp") center/cover no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

body.loaded {
    opacity: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    margin: auto;
    padding: 20px;
}

h1 {
    font-family: "Playfair Display", serif;
    color: #fede00; /* yellow */
    font-size: 3em;
    margin: 20px 0;
}

p,
a {
    font-size: 1.1em;
    color: white;
}

a {
    text-decoration: none;
    color: #fede00;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 1.5em;
}
.social-icons a:hover {
    color: #fede00; /* yellow */
}
