body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color emoji", "Segoe UI emoji", "Segoe UI Symbol";
    color: #d4dbdf;
    background-color: #04121b;
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.profile {
    border-radius: 50%;
    height: 8em;
    width: 8em;
    margin-bottom: .5rem;
}

.footer {
    font-size: .9rem;
}

a {
    color: #2185d0;
}

@media screen and (max-width: 600px) {
    .container {
        margin: 0 2.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    .profile {
        align-self: center;
    }

    .footer {
        font-size: .8rem;
    }
}

@media screen and (min-width: 650px) {
    .container {
        font-size: 1.2rem;
        justify-content: center;
        margin: 0 5rem;
    }
}

@media screen and (min-width: 1240px) {
    .container {
        font-size: 1.3rem;
        justify-content: center;
        margin: 0 6rem;
    }
}