#poweredByStrava {
    position: fixed;
    bottom: 0;
    right: 1vw;
    z-index: 9999;
    background: #24242490;
    border-radius: 8px 8px 0 0;
    padding: 5px 10px;
    border : solid 2px var(--color_strava_orange);
    transition: all 0.3s ease;
}

#poweredByStrava:hover {
    background: #242424;
}

body {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    background-color: #050e2d;
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}
a {
    text-decoration: none;
    cursor: pointer;
}
button {
    cursor: pointer;
}

.login-container {
    border-radius: 10px;
    background-color: var(--app-bg-dark);
    padding: 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 300px;
    margin-top: 20vh;
    height: clamp(300px, 50vh, 350px);
    color: white;
    text-align: center;
    justify-content: space-evenly;
}

.login-container #logo {
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.1));
}