* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.2;
    font-family: 'Archivo', sans-serif;
}

.big-container {
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: flex;
}

.container {
    text-align: center;
    flex-direction: column;
    max-width: 20rem;
    display: flex;
}

.coming-soon {
    color: #4A4A4A;
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: .5rem;
}


.go-home-button {
    border-radius: .5rem;
    background-color: #3d9be9;
    color: white;
    text-align: center;
    text-transform: capitalize;
    flex: none;
    padding: .75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
    margin-top: .5rem;
}

.go-home-button:hover {
    background-color: #4A4A4A;
}