* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background: #101216;
    color: #E6EEF9;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.loginButton {
    width: 2.4vw;
    height: 2.4vw;
    border-radius: 50%;
    background: rgba(45, 125, 255, 0.1);
    border: .1vw solid rgba(45, 125, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s ease;
}

.loginButton svg {
    width: 1.2vw;
    height: 1.2vw;
    stroke: #5A9CFF;
    transition: stroke .25s ease, transform .25s ease;
}

.loginButton:hover {
    background: rgba(45, 125, 255, 0.2);
    border-color: #5A9CFF;
    transform: scale(1.05);
}

.loginButton:hover svg {
    stroke: #7FB3FF;
    transform: translateX(.15vw);
}

.loginButton:active {
    transform: scale(.95);
}

