/* Main CSS */

body {
    background: #0c1935;
    color: #f7f7f7;
    font-family: 'Raleway', sans-serif !important;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.wrapper {
    text-align: center;
    padding: 25px;
    max-width: 720px;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 180px;
    height: auto;
}

h1 {
    font-size: calc(12px + 1.1vw);
    margin-bottom: 0;
    line-height: 1;
    font-weight: 700;
}

p {
    margin: 18px;
    font-weight: normal;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #eeeeee;
    background: #ffffff10;
    border: 1px solid #ffffff20;
    border-radius: 1rem;
    padding: 15px 20px;
}

.icons {
    text-align: center;
}

.icons i {
    color: #33bed5;
    background: #f7f7f7;
    height: 15px;
    width: 15px;
    padding: 13px;
    margin: 0 10px;
    border-radius: 50px;
    border: 1px solid #f7f7f7;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
}

.icons i:hover,
.icons i:active {
    color: #f7f7f7;
    background: none;
    border-color: #33bed5;
    cursor: pointer !important;
    transform: scale(1.2);
    text-decoration: none;
}