@charset "UTF-8";
:root {
    --main-color: #008080;
    --secondary-color: #c8b5a6;
    --text-color: white;
}

@font-face {
    font-family: Lato;
    font-display: swap;
    src: url(../static/fonts/Lato-Regular.ttf);
}

body,
.container {
    height: fit-content;
    font-family: Lato;
    color: var(--text-color);
}

body {
    background-color: var(--main-color);
    height: 100vh;
}

a {
    color: var(--secondary-color);
}

a:hover {
    color: white;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.logo {
    width: 25%;
}

.subtext {
    font-size: 3rem;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.delimiter {
    width: 3rem;
    margin: 0 1rem;
}

.footer-text {
    font-size: 3rem;
    font-weight: bold;
}

.contact-me-text {
    position: absolute;
    bottom: 1rem;
    text-align: center;
    font-size: large;
}

@media (max-width: 1000px) {
    .logo {
        width: 75%;
    }
    .subtext {
        font-size: 4rem;
    }
    .footer {
        margin-top: 5rem;
        flex-direction: column;
    }
}