body {
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 16px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk';
}

p {
    margin-top: 8px;
    font-family: 'Space Grotesk';
    word-wrap: break-word;
}

img.app {
    height: 90px;
    width: 90px;

    border-radius: 16px;
}

.center {
    height: 100vh;
    width: 100vw;

    display: flex;
    flex-direction: column;

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

.center > .ctn {
    max-width: 700px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-width: 250px;    
    padding: 12px;

    color: white;
    font-family: "Space Grotesk";
    font-weight: 600;
    text-decoration: none;

    border-radius: 6px;

    background-color: #3E6AE1;
}

@media screen and (max-width: 700px) {
    .center > .ctn {
        max-width: 95vw !important; 
    }
}
