html {
    font-size: 100%;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    background-color: #000;
    color: #fff;
    font-family: "Montserrat", ui-sans-serif,
        system-ui,
        sans-serif,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        "Noto Color Emoji";
    font-size: 1rem;
    font-size: clamp(1rem, 0.96rem + 0.21vw, 1.125rem);
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.visually-hidden {
    position: absolute;
    padding: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.flow>*+* {
    margin-block-start: var(--flow-space, 8em);
}

.wrapper {
    width: calc(100% - 2rem);
    max-width: 1280px;
    margin-inline: auto;
}

.logoContainer {
    margin-block: 1rem;
}

.heroContainer {}

.hero {
    text-align: center;
}

.hero-1 {
    text-transform: capitalize;
    letter-spacing: 0.2em;
}

.hero-2 {
    text-transform: uppercase;
    letter-spacing: 0.7em;
}

.accent {
    color: hsl(57, 100%, 48%);
}

.socials {
    display: flex;
    justify-content: center;
}

.socialsContainer {
    display: flex;
    gap: 8px;
}

.social-btn {
    padding: 1rem;
    background-color: hsla(57, 100%, 48%, 10%);
    border-radius: 100%;
    color: hsl(56, 100%, 90%);
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.social-btn:hover {
    background-color: hsla(57, 100%, 48%, 20%);
    color: hsl(56, 100%, 90%);
}

.social-icon {
    fill: hsl(56, 100%, 90%);
}

.copyrightContainer {
    text-align: center;
}