@font-face {
    font-family: "Avenir";
    src: url('./assets/fonts/AvenirNextLTPro-Regular.otf');
    font-weight: normal;
}
@font-face {
    font-family: "Avenir";
    src: url('./assets/fonts/AvenirNextLTPro-Bold.otf');
    font-weight: bold;
}

html {
    --font-size: 1rem;
}

body {
    background-color: black; color: white;
    display: flex; justify-content: center; align-items: center; margin: 0;
    height: 100vh;
    font-family: "Avenir";
}

h1, h2, h3 {
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

.logo-container {
    display: flex; justify-content: center; align-items: center;
    flex-direction: column;
    gap: .5rem;
}

.logo-img {
    width: calc(var(--font-size) * 11/1.6);
}

.slider-container {
    width: 100%;
}

.slider-toggle {
    cursor: pointer;
    width: 10px; height: 10px; border-radius: 25px; background-color: white;
}