@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Expanded:wght@100;200;300;400;500;600;700;800;900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    --hero-font-color: #1b70e8;
    --accent-color-1: #89043D;
    --accent-color-2: #B8F3FF;
    --accent-color-3: #68aaf6;
    --accent-color-4: #BBBE64;

}
html {
    font-family: "Encode Sanse Expanded", sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}
.centered {
    width: fit-content;
    margin: 0 auto;
}

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

.clear {
    font-size: 1.5rem;
}

.encode-sans-expanded-thin {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.encode-sans-expanded-extralight {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.encode-sans-expanded-light {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.encode-sans-expanded-regular {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.encode-sans-expanded-medium {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.encode-sans-expanded-semibold {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.encode-sans-expanded-bold {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.encode-sans-expanded-extrabold {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.encode-sans-expanded-black {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.img-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    width: 80%;
}

.img-gallery > img {
    margin: 50px;
    max-width: 100%;
    height:5vh;
}

.hero-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    translate:calc(-50%, -50%);
    width: fit-content;

}

.hero-font {
    font-weight: 800;
    font-size:5rem;
    color: var(--hero-font-color);
    letter-spacing: 1rem;;
    margin: 0 0 0 0 ;
}

.main-heading {
    font-size: 2rem;
    text-align: center;
    color: var(--accent-color-1);
    letter-spacing: 0.2rem;
    margin: 2rem 0 0 0;
    font-weight: 100;
}

.sub-heading {
    font-size: 1.5rem;
    text-align: center;
    color: var(--accent-color-3);
    letter-spacing: 0.2rem;
}

@media (max-width: 600px) {
    .hero-font {
        font-size: 3rem;
        letter-spacing: 0.5rem;
    }
    .main-heading {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
    .sub-heading {
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }
}