/* .counter {
    padding: 10px;
    background-color: var(--container);
    border-radius: 5px;
}
.counter > h1 {
    font-size: 3rem;
}
.numbers { 
    display: flex;
    gap:5px;
}
.number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    background-color: rgba(0,0,0,.1);
    border-radius: 5px;
    width: 75px;
    height: 75px;
    overflow: hidden;
    position: relative;
}
.number > div {
    position: absolute;
    transform: translateY(100%);
    
    65 difference
    bottom: 70px;
} */

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    overflow-x: hidden;
    /* background-image: linear-gradient(#ebf5ff, #85c4ff); */
    background-color: var(--background);
    --other: hsl(from var(--background) h s calc(l + 5));
    background-image: linear-gradient(var(--other), var(--background));
    height: 100vh;

}
.content {
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    padding: 48px min(72px, 10vw);
    color: var(--text);
    width: min(540px, 90vw);

    display: flex;
    flex-direction: column;
    gap:5px;
    text-align: center;
    h1 {
        font-size: 2.75rem;
    }
}
.innercontent {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap:5px;
    font-size: 1.25rem;
    scale:1.25;
    /* flex:.3; */
    width: 35%;
}
.innercontent a {
    font-size: 1rem;
    text-align: left;
    opacity: .5;
}
.line {
    height:2px;
    margin: .5rem .25rem;
    background-color: white;
    border-radius: 3px;
    opacity: .5;
}
.signUp {
    padding: 1rem 0;
    display: flex;
    justify-content: space-evenly;
    gap:5px;
    flex-wrap: wrap;
    text-wrap: nowrap;
}
.toggle {
    flex-wrap: wrap;
    font-size: .8rem;
}
.loggedInOptions {
    display: flex;
    gap:5px;

    > * {
        flex:1;
        text-decoration: none;
    }
    button {
        height: 100%;
        width: 100%;
    }
}
@media screen and (max-width:600px) {
    .loggedInOptions {
        flex-direction: column;
    }
}