*, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Outfit', sans-serif;
}

section {
    width: 100%;
    min-height: 100vh;
    background-color: mistyrose;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;

    background: linear-gradient(to bottom, #E0FBFC, #95CDDE);

    font-size: 1.5rem;

    position: relative;
}

section h1 {
    margin-bottom: .5em;
}

section h3 {
    margin-bottom: .75em;
}

.go-back {
    color: black;
    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 10px;
    border: 2px solid white;

    padding: 0.5em .75em;
    border-radius: 100px;

    transition: .3s;
}

.go-back:hover {
    font-weight: bold;
}

.twitter {
    color: rgb(0, 119, 255);
}

.twitter:hover {
    color: rgba(0, 119, 255, 0.816);
}
