html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-family: 'Oswald', sans-serif;
}
#page {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    display: block;
    background-image: url(images/cinicollerico-logo.png);
    background-image: none, url(images/cinicollerico-logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    width: 320px;
    height: 125px;
    transition: all 1.5s ease-in-out;
    overflow: hidden;
    text-indent: -9999px;
}
.logo.small {
    width: 150px;
    height: 50px;
    background-position: left center;
}
.logo.small h1 {
    margin: 0;
}
.logo:hover {
    transform: scale(1.1);
}
a {
    color: #1b999f;
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover {
    text-decoration: underline;
    color: #e433c6;
}
.home-links {
    position: fixed;
    right: 20px;
    bottom: 20px;
}
.home-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
a.home-link {
    font-size: 14px;
    font-style: italic;
    color: #ccc;
    text-decoration: none;
}
a.home-link:hover {
    text-decoration: underline;
}
input {
    border: 1px solid #eee;
    padding: 7px 14px;
}
input.submit {
    color: white;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #e433c6;
}
::marker {
    color: #1b999f;
}
code {
    display: inline-block;
    padding: 20px;
    background-color: #999;
    color: white;
    margin: 15px 10px 0 0;
}
@media (max-width: 420px) {
    .logo {
        width: 250px;
    }
}