* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Headline one";
    src: url(/assets/fonts/HEADOH__.TTF) format('truetype');
}

@font-face {
    font-family: "Headline two";
    src: url(/assets/fonts/HEADTH__.TTF) format('truetype');
}

* {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}



body {
    background-color: var(--celeste);
    margin: 0;
    font-size: 1em;
}

h1 {
    color: var(--celeste);
    font-size: 3rem;
    font-family: "Headline one";
    margin: 0;
    padding: 0;
}

h2 {
    color: var(--celeste);
    font-size: 3rem;
    font-family: "Headline two";
    margin: 0;
    padding: 0;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    background-image: url('/assets/img/header1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    border-radius: 5px;
    background-color: hsl(from var(--caribbean-current) h s l / .7);
    backdrop-filter: blur(10px);
    padding: 50px;
    margin-bottom: 140px;
}

.boxshadow {
    box-shadow: 0 0 10px hsl(from var(--caribbean-current) h 20 10 / .7), 0 0 20px hsl(from var(--caribbean-current) h 20 10 / .7);
}

.title {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.logo img {
    height: 200px;
    width: 200px;
    filter:
        drop-shadow(0 0 5px hsl(from var(--celeste) h s l / .7)) drop-shadow(0 0 5px hsl(from var(--caribbean-current) h s l / .7)) drop-shadow(0 0 10px hsl(from var(--caribbean-current) h s l / .7)) drop-shadow(0 0 20px hsl(from var(--caribbean-current) h s l / .7));
}

.text {
    text-align: center;
}

@media (min-width: 1000px) {
    .title {
        flex-direction: row;
    }
    .text {
    text-align: left;
}
}