:root {
    --background: #2f2f2f;
    --color-primary: #007bff;
    --font-color: white;
    --font-size: 16px;
  }

*{
    margin: 0px;
    padding: 0px;
}
body{
    background-color: var(--background);
    height: 100vh;
    width: 100vw;
    font-family: 'Roboto', sans-serif;
}

p{
    font-size: var(--font-size) !important;
    color: var(--font-color);
    text-align: center;
}

.container{
    display: grid;
    width: 100vh;
    width: 100vw;
    place-items: center;
}

#page-1{
    width: 100vw;
    position: relative;
    height: 100vh;
    max-width: 400px;
    display: grid;
    place-items: center;
    grid-template-rows: 50px 1fr ;
}

.reference{
align-self: self-start;
    height: 100%;
    width: 95vw;
max-width: 400px;
    display: grid;
    place-content: center;
    overflow: hidden;
    aspect-ratio: 2/3.2;
    position: relative;
}

.banner{
    width: 300px;
}
.btnTransparent{
    height: 100px;
    width: 300px;
    position: absolute;
    bottom: 50px;
    left: 0;
}
#page-2{display: none;}
#page-3{
    width: 100vw;
    height: 100vh;
    place-items: center;
    grid-template-rows: 1fr ;
    display: none;
}
#countdown{
    font-size: 10px;
}
.wifi{
    height: 100vh;
}

#ban{
    width: 95vw;
max-width: 400px;
}

#vid{
    width: 95vw;
max-width: 400px;
    display: none;
}

#playVid{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}
#referTop{
    padding-top: 10px;
    height: 100%;
    display: grid;
    align-content: start;
}