* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

html {
    width: 100%;
    height: 100%;
    background: #080808;
}

body {
    width: 100%;
    height: fit-content;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas';
    src: url('../fonts/Bebas_Neue/BebasNeue-Regular.ttf'), format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.subtitle {
    width: 100%;
    height: fit-content;
    font-size: 36px;
    font-family: "Bebas";
    font-weight: 300;
    color: #fefefe;
    text-align: center;
}

@media (min-width: 500px) {
  .subtitle {
    font-size: 4rem;
  }
}