@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    background-image: url('background.svg');
    background-size: cover;
    background-position: center;
    background-color: #1a1d2a;
    background-blend-mode: multiply;
}

body {
    font-family: 'Lato', sans-serif;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#startText {
    font-size: 5em;
    font-family: 'Lato';
    color: rgb(216, 216, 216);
    position: absolute;
    text-align: center;
    z-index: 1;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#box-o-circles {
    position: absolute;
    text-align: center;
    width: 95vw;
    height: 90vh;
    background-color: rgba(0, 0, 0, 0.342);
    border-style: solid;
    border-color: rgb(255, 106, 0);
    border-width: .3rem;
    border-radius: 1em;
    box-shadow: 0 0 1rem rgba(255, 141, 66, 0.6);
    backdrop-filter: blur(4px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 0;
    transition: border-color .25s ease-in-out; 
}

#count {
    font-size: 3em;
    font-family: 'Lato';
    color: rgb(216, 216, 216);
    position: absolute;
    text-align: center;
    left: 3.5%;
    bottom: 2%;
    z-index: 1;
    display: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#box-o-circles:hover {
    border-color: rgb(255, 157, 66); 
}

#startText:hover ~ #box-o-circles {
    border-color: rgb(255, 157, 66); 
}


#circle {
    position: absolute;
    z-index: 5;
    height: 2.5vw;
    width: 2.5vw;
    background-color: rgb(255, 157, 66);
    box-shadow: 0 0 1rem rgba(255, 141, 66, 0.6);
    border-radius: 50%;
    margin: 10px;
    animation: fadeIn 0.75s forwards;
    display: none;
}