@font-face {
    font-family: Alice-Regular;
    src: url(../fonts/Alice-Regular.ttf);
}

@font-face {
    font-family: BalsamiqSans-Regular;
    src: url(../fonts/BalsamiqSans-Regular.ttf);
}

@font-face {
    font-family: Kurale-Regular;
    src: url(../fonts/Kurale-Regular.ttf);
}

@font-face {
    font-family: Neucha-Regular;
    src: url(../fonts/Neucha-Regular.ttf);
}

body {
    margin: 0;
    padding: 0;
    background: #fef79f;
    font-family: Kurale-Regular, serif;
    color: #2b2323;
}

.page {
    max-width: 1000px;
    margin: auto;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.splash {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/static/img/splash.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.accounts {
    padding: 30px;
}
.accounts a {
    color: #2b2323;
}
.accounts [for="id_login"],
.accounts [for="id_password"],
.accounts [for="id_password1"],
.accounts [for="id_password2"],
.accounts [for="id_email"] {
    display: none;
}
.accounts #id_login,
.accounts #id_password,
.accounts #id_password1,
.accounts #id_password2,
.accounts #id_email {
    width: 100%;
    padding: 20px;
}
.accounts p {
    display: flex;
}

.accounts .description {
    margin-top: 50px;
    background: #fff;
    padding: 10px 20px;
    border: 1px solid #aaa;
    border-radius: 7px;
}

.accounts .screenshots {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}
.accounts .screenshots__break {
    width: 100%;
}
.accounts .screenshot {
    margin: 25px 10px 25px;
    width: 100%;
    max-width: 330px;
}
.accounts .screenshot_wide {
    max-width: 500px;
}
@media (max-width: 550px) {
    .accounts .screenshot_wide {
        display: none;
    }
}