
@font-face {
  font-family: 'Inter';
  src: url('/public/fonts/Inter.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
}

* {
    box-sizing: border-box;
}

html {
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    height: --webkit-fill-available;
}

.logo {
    width: 400px;
}

.content {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: relative;
}

ul {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    text-shadow: #000 1px 1px 2px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: fit-content;
}

li .icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

li .username {
    height: 32px;
    vertical-align: middle;
}

/* remove all a tag styles like underline and color for all states */
a:link, a:visited, a:hover, a:active {
    text-decoration: none;
    color: inherit;

}

a::after {
    content: '\2197';
    
    font: inherit;
    font-size: 0.9rem;
    display: inline-block;
    transform: translate(2px, -7px);
}

.icon {
    border-radius: 4px;
}

.bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow: clip;
    z-index: -1;
}

@media (max-width: 1000px) {
   .content .bg-wrap .bg {
        width: 100%;
        height: 110%;
        object-fit: cover;
        object-position: 65% center;
    }

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        height: 100%;
    }

    .logo {
        margin-top: 30px;
        width: 400px;
    }

    ul {
        margin-bottom: max(20px, env(safe-area-inset-bottom));
        text-align: left;
    }
}

@media (min-width: 1001px) and (max-width: 1143px) {
    .content .bg-wrap .bg {
        width: 100%;
        height: 110%;
        object-fit: cover;
        object-position: center;
    }

    ul {
        margin-left: 172px;
        margin-top: 10px;
    }

    .logo {
        margin-top: 70px;
        width: 300px;
        margin-left: 120px;
    }
}

@media (min-width: 1144px) {
    .content .bg-wrap .bg {
        width: 100%;
        height: 110%;
        object-fit: cover;
        object-position: center;
    }

    ul {
        margin-left: 237px;
        margin-top: 10px;
    }

    .logo {
        margin-top: 70px;
        width: 300px;
        margin-left: 180px;
    }
}

