@font-face {
    font-family: WinterIsComing;
    src: url("../font/winte_is_coming.otf");
}

* {
    margin: 0;
    padding: 0;
    font-family:'WinterIsComing';
}
body {
    overflow: hidden;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

main {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFF;
}
h1 {
    font-weight: 400;
    font-size: 5rem;
    text-align: right;
    line-height: 2.5rem;
    margin-bottom: 5rem;
}
h1 > span {
    display: block;
    font-size: 2rem;
}
form {
    text-align: center;
}
label, input[type="text"] {
    font-size: 3rem;
    max-width: 300px;
}
input[type="submit"] {
    padding: 10px 20px;
    margin-top: 30px;
    font-size: 2rem;
    background-color: transparent;
    color: #FFF;
    border: 2px solid #FFF;
    border-radius: 30px;
    cursor: pointer;
}

/* Mobile */
@media only screen and (max-width: 767px) {
    h1 {
        font-size: 3rem;
    }
    h1 > div {
        font-size: 1.5rem;
    }
    label, input[type="text"] {
        font-size: 2rem;
    }
    input[type="submit"] {
        font-size: 1.5rem;
    }
}