/* RESET */

*, *::before, *::after{
    box-sizing: border-box; 
}

*{
    margin: 0; 
    padding: 0; 
}

ul[role='list'], ol[role='list']{
    list-style: none; 
}

html:focus-within{
    scroll-behavior: smooth; 
}

a:not([class]){
    text-decoration-skip-ink: auto; 
}

img, picture, svg, video, canvas{
    max-width: 100%;
    height: auto; 
    vertical-align: middle; 
    font-style: italic; 
    background-repeat: no-repeat; 
    background-size: cover;
}

input, button, textarea, select{
    font: inherit; 
}

@media (prefers-reduced-motion: reduce){
    html:focus-within {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transition: none;
    }
}

body, html{
    height: 100%; 
    scroll-behavior: smooth; 
    font-size: 16px;
}

/* FONTS */

@font-face {
    font-family: "Copperplate";
    src: url('fonts/Copperplate.otf');
    font-weight: 400;
  }

/* STYLINGS */

body {
    background-color: #006c65;
    font-family: "Copperplate", 'Times New Roman', Times, serif;
    color: #FFF;
    padding: 0;
    margin: 0;
}

a {
    color: #FFF;
    text-decoration: underline;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

a:hover {
    color: rgba(255,255,255, .75);
}

.container {
    padding: 0 1em;
    max-width: 1300px;
    margin: 0 auto;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 3rem 0;
}

.main-wrapper .main-wrapper__inner {
    display: flex;
    flex-direction: column;
    padding-top: calc(35dvh - 6rem);
    flex: 1 1 0%;
}

.text-center {
    text-align: center;
}

.main-logo-wrapper img {
    display: inline-block;
    height: auto; 
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
}

.main-logo-subtitle {
    padding-top: 2rem;
    font-size: 2.5rem;
}

.main-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
    align-items: center;
    font-size: 1.75rem;
}

.main-font-styling {
    letter-spacing: 1px;
}

@media only screen and (max-width: 1300px) {
    .main-wrapper .main-wrapper__inner {
        padding-top: calc(30dvh - 6rem);
    }
}

@media only screen and (max-width: 1023px) {
    .main-logo-wrapper img {
        max-width: 350px;
    }
    .main-logo-subtitle {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 767px) {
    .main-logo-wrapper img {
        max-width: 250px;
    }
    .main-logo-subtitle {
        font-size: 1.5rem;
    }
    .main-content {
        font-size: 1.125rem;
    }
}

@media only screen and (max-width: 424px) {
    .main-logo-subtitle {
        font-size: 1.25rem;
    }
    .main-content {
        font-size: 1rem;
    }
}