@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Comfortaa&display=swap');

:root {
    --blue: #10069F;
    --light-blue: #86ADDD;
    --ff-cinzel: "Cinzel", serif;
    --ff-comfortaa: "Comfortaa", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--ff-comfortaa);
    background-color: #fff;
    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 0 20px;
    padding: 50px 0;
    height: 100vh;
    text-align: center;
}

img {
    width: 100%;
    height: auto;
}

.logo {
    max-width: 250px;
}

.construction {
    max-width: 200px;
}

h1 {
    color: var(--blue);
    font-family: var(--ff-cinzel);
    font-size: 42px;
}

a {
    color: var(--light-blue);
    font-size: 22px;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media(min-width: 768px) {
    .logo {
        max-width: 400px;
    }

    .construction {
        max-width: 300px;
    }
    h1 {
        font-size: 72px;
    }
    a {
        font-size: 36px;
    }
}
