/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

/* Global */
html,
body {
    padding: 0;
    margin: 0;
}
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 62.5%;
    background: #000;
}

/* Defaults */
a {
    text-decoration: none;
    -webkit-transition: color 0.2s linear;
    -moz-transition: color 0.2s linear;
    -ms-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}

/* Content */
#content {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 40px 0px;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-70%);
    transform: translateY(-70%);
}
#logo {
    height: 30px;
    background-image: url('../img/logo-light.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}
#info {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}
#info a {
    color: #8063f1;
    text-decoration: none;
}
#info a:hover {
    color: #fff;
}
