@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+TAS:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+TAS:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
html, body {
    margin: 0;
}

#hero {
    background-image: url(hero.png);
    background-size: cover;
    background-position: center;
    height: 40rem;
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;
}

.hero-logo {
    width: 15rem;
    display: inline-block;
    backdrop-filter: blur(4px) brightness(200%);
    padding: 4px;
    border-radius: 2rem;
}

.hero-title {
    font-size: larger;
    margin-top: 0;
    padding-top: 5px;
    display: inline;
    color: whitesmoke;
}

.ct {
    padding: 2rem;
}

.ct-title {
    font-size: xx-large;
    text-align: center;
    font-family: "Playwrite AU TAS", cursive;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    margin: 1rem;
}

.ct-text {
    justify-content: center; /* centers horizontally */
    align-items: center;
    display: flex;
    height: max-content;
    font-size: large;
}

.ct-text-1 {
    display: inline-block;
    max-width: 100vw;
    vertical-align: top;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

.ct-spacer {
    margin-left: 2rem;
    display: inline;
}

.ct-text-2 {
    display: inline-block;
    max-width: 100vw;
    vertical-align: bottom;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}

@media screen and (max-width: 768px) {
    .ct-text {
        flex-direction: column;
        align-items: flex-start;
    }

    .ct-text-1,
    .ct-text-2 {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .ct-spacer {
        display: none;
    }

    .ct-title {
        margin-left: 1rem;
        text-align: center;
    }
}