* {
    user-select: none;
    -webkit-user-select: none; /* iOS Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* old IE */
}
body {
    margin:0;
    padding:0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter",sans-serif;
    width: 100vw;
    height: 100dvh;
    background:rgba(250,250,250)
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 300ms;
}
.content.hidden {
    transform: scale(0.9);
    opacity: 0;
    filter: blur(5px) brightness(0.9);
}
.content img {
    width: 100%;
    max-width: 400px;
}
.content span {
    font-weight: 700;
    font-size: 35px;
    margin-top:10px;
    color:rgb(20,20,20);
}
.content span.subtitle {
    font-size: 19px;
    color:rgb(70,70,70);
    font-weight: 400;
}
.badge {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 125px;
    transition: 100ms;
}
.badge.hidden {
    opacity: 0;
}
i.home {
    position: fixed;
    top:20px;
    left:20px;
    transition: 100ms;
    color:rgba(40,40,40);
    font-size: 35px;
    cursor: pointer;
}
i.home:hover {
    transform: scale(1.03);
}
i.home:active {
    transform: scale(0.9);
}
i.learn-more {
    transform: scale(0.8);
    color:rgba(140,140,140);
    transition: 100ms;
    cursor: pointer;
}
i.learn-more:hover {
    transform: scale(0.83);
}
i.learn-more:active {
    transform: scale(0.75);
}
span.legal {
    font-size: 14px;
    position: fixed;
    bottom: 10px;
    left: 15px;
    color:rgb(125,125,125);
    cursor: pointer;
    text-decoration: underline;
    transition: 100ms;
}
span.legal:hover {
    transform: scale(1.02);
}
span.legal:active {
    transform: scale(0.94);
}