@font-face {
    src: url('./assets/Federo-Regular.woff') format('woff');
    font-family: 'Federo';
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    --font-basis: 20px;
    --font-style-h: 'Federo', Verdana, Geneva, Tahoma, sans-serif;
    --color-fg: #f2f2f2;
    --color-fg-input: #8f8f8f;
    --color-bg-input: #2c2c2c;
    --color-bg-first: #000;
    --color-bg-second: #000045;
    
}

* {

    color: var(--color-fg);
    font-size: var(--font-basis);
}

body {
    background: linear-gradient(var(--color-bg-first), var(--color-bg-second));



}
main {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    
}

section {
    height: 100vh;
    scroll-snap-align: center;

}


h1 {
    font-family: var(--font-style-h);
    font-size: 5rem;
}

h2, h3 {
    font-family: var(--font-style-h);
    color: white;
    font-size: 3.5rem;
    letter-spacing: 2pt;
    text-align: center;
    margin-block: 1rem;
}

#hero {
    background-image: url("./assets/stage.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main {
    margin-top: 100px;
    width: clamp(280px, 65%, 720px);
}

p {
    font-size: 1.5rem;
    font-family: Geneva, Tahoma, sans-serif;
    letter-spacing: 1pt;
    width: clamp(280px, 75%, 1100px)
}

section, .video-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}


.device-img {    
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75%;

}

.device-img > * {
    margin-inline: -2%;
    width: 50%;
    max-width: 300px;
}



.mbr-justify-content-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mbr-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.25rem
}

.field-input, .btn-primary {
    background-color: var(--color-bg-input);
    color: var(--color-fg-input);
    padding: 0.5rem;
    width: 650px;
    border-radius: 0.5rem;
    border: 1px solid var(--color-fg-input);
}

.btn-primary {
    background-color: darkred;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: inset 0 0 0.35rem 0.25rem #f55;
}



.social img {
    cursor: pointer;
    margin-inline: 1rem;
    width: 4rem;
}

@media only screen and (max-width: 700px) {
    html {
        --font-basis: 10px;
    }
    .field-input, .btn-primary {
    width: 320px;
    }
    .social img {
        width: 6rem;
    }    
}