body {
    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.background {
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -9999; /* Make sure this is always behind everything */
    filter: blur(8px);
    transform: scale(1.1);
}

.centered {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    position: absolute;
    width: 21rem;
    height: 13rem;

    background-color: #252525;
    box-shadow: 0 .25rem .35rem rgba(0, 0, 0, 0.25);
    border-radius: .25rem;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 2.1rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #4195E2;
    margin-top: .4rem;
}

.logo-chat {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 1.35rem;
    color: white;
}

.message {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-size: .86rem;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;

    width: 75%
}

.socials {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.twitter {
    width: 2rem;
    height: 2rem;

    background-image: url(../svg/twitter.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.github {
    width: 2rem;
    height: 2rem;

    background-image: url(../svg/github.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.twitter, .github {
    transition: filter .25s;
}

.twitter:hover, .github:hover {
    filter: brightness(80%)
}