html {
    height: 100%;
}
textarea:focus, input:focus{
    outline: none;
}
body {
    font-family: arial, "Open Sans", sans-serif;
    min-height: 100%;
    background-color: #0e0c18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0px;
    box-sizing: border-box;
    color: #fff;
}

.container {
    margin: 0 20px 30px;
    flex-shrink: 0;
    text-align: center;
}

.character-rounded {
    width: 570px;
    height: 570px;
    border-radius: 50%;
    background: url(./img/background.jpeg) no-repeat;
    background-size: 570px auto;
    background-position: 0 -80px;
    margin-bottom: 35px;
}

.input, .btn {
    line-height: 50px;
    height: 50px;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    border: none;
    font-size: 18px;
}

.btn {
    padding: 0 20px;
}

.form-row {
    margin-bottom: 20px;
}

.code-input, .get-photo-btn {
    width: 230px;
}

.btn {
    background-color: #CA5534;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
.btn:hover {
    background-color: #da512b;
}

.selfie-image {
    margin-bottom: 35px;
    border-radius: 10px;
    max-width: 770px;
    height: auto;
}

.social-icons a {
    text-decoration: none;
}
.social-icons img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    vertical-align: top;
    border-radius: 10px;
}

@media (max-width: 810px) {
    .selfie-image {
        max-width: 100%;
    }
}

@media (max-width: 610px) {
    .character-rounded {
        display: none;
    }
    body.home {
        background: url(./img/background.jpeg) no-repeat center center;
        background-size: cover;
        justify-content: flex-end;
    }
}

.receipt-link {
    color: #fff;
    opacity: .2;
}