html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;

    font-family: "Gabarito", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(12px, 4vw, 18px);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #fdf2e1 url("images/bg.png") repeat-x fixed;
    background-size: auto 75%;
}

.overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.content-container {
    max-width: min(100%, 600px);
}

.logo {
    max-width: 100%;
}

h1 {
    display:none;
    font-size: 2rem;
    color: #fdf2e1;
}

h2 {
    margin-top: -1.5rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fdf2e1;
}

.contact-info {
    position: fixed;
    bottom: 0;
    height: 25%;
    max-width: min(100%, 600px);
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 70%;
}

.contact-info a {
    color: #000;
    font-weight: 400;
    text-decoration: none;
}

.contact-info a:hover {
    opacity: 0.6;
}