:root {
    --colors--black: black;
    --colors--black-2: #070808;

    --colors--white: white;
    --colors-white-pink: #fdf9ff;
    --colors-pink: #f2e2ff;

    --colors--cream: #fbf8f5;
    --colors--grey: #f4f0ec;
    --colors--grey2: #f1e8e0;
    --colors--red: #f54949;

    --transition-main: cubic-bezier(0.75, 0.25, 0.13, 0.92);
}

body {
    color: var(--colors--black-2);
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.hubble-logo {
    width: 110px;
    margin: 0 0 60px 0;
}

h1 {
    font-size: 3.75rem;
    font-size: clamp(3.75rem, 3rem + 3.75vw, 7.5rem);
    line-height: 1.1;
    text-align: center;
    font-family: gelica, sans-serif;
    font-weight: 500;
    max-width: 920px;
    margin: 0;
}

.text-pill {
    background: var(--colors--white);
    display: inline-block;
    padding: 7px 15px;
    border-radius: 40px;
    font-size: 0.8125rem;
    font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 0 10px 0;
}

.hero {
    container-name: hero-banner;
    container-type: inline-size;
    background-color: var(--colors--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

@container hero-banner (width <= 1366px) {
    .text-pill {
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 1180px) {
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 932px) {
}

@media screen and (max-width: 479px) {
    .hubble-logo {
        width: 90px;
    }
}
