@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Nova+Square&display=swap');

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

:root {
    --text: #e7e7e7;
    --accent: #ff0f7B;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

body {
    background-image: url(images/background.jpg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 100vw;
    min-height: 100vh;
}

section {
    padding: 2rem;
}

/* === hero section === */

.hero {
    background-color: rgba(3, 4, 14, 0.8);
    width: 100vw;
    height: 100%;
    min-height: 100vh;
}
.hero h1 {
    font-size: 6rem;
    font-family: 'Nova Square', sans-serif;
    padding: 4rem 0;
}
.hero .material-symbols-outlined {
    font-size: 2rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    color: var(--text);
    vertical-align:middle;
    margin-bottom: 0.2rem;
}
.hero a {
    background-color: var(--accent);
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: 'Nova Square', sans-serif;
}
.hero-content {
    padding: 4rem calc(((100vw - 1050px) / 2));
    max-height: fit-content;
}

@media screen and (max-width: 750px) {
    .hero h1 {
        font-size: 4rem;
        padding: 6rem 0;
    }
}