body {
    font-family: Hyundai, "Helvetica Neue", Helvetica, sans-serif;
    margin: 0; 
    background-image: url("./images/unsupported_bg.png");
    background-size: cover;
}

.header {
    border-bottom: solid 1px black;
    display: flex;
    justify-content: center;
    width: 100vw;
}

.logo {
    padding: 16px 0;
    display: block;
    line-height: 1;
    letter-spacing: -.05em;
    font-size: 1.75rem;
    text-decoration: none;
    color: black;
    font-size: 28px;
}

.content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 61px)
}

h1 {
    font-size: 62px;
    max-width: 50%;
    margin: 0;
    text-align: center;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 30px;
    max-width: 40%;
    margin: 24px 0 0 0;
    font-weight: 400;
}
@media only screen and (max-width: 600px) {
    h1 {
        max-width: 80%;
        font-size: 28px;
    }
    h2 {
        max-width: 70%;
        font-size: 16px;
    }
}