@font-face {
    font-family: Raleway;
    src: url('/assets/fonts/Raleway-VariableFont_wght.ttf') format('truetype')
}

@font-face {
    font-family: RalewayItalic;
    src: url('/assets/fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype')
}

* {
    font-family: Raleway, SansSerif;
}

html {
    width: 100vw;
    height: 100vh;
}

body {
    padding: 0px;
    margin: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(173, 241, 255, 1) 100%);
    background-attachment: fixed;
}

div.logo-wrapper {
    position: relative;
    top: 40px;
    margin: auto;
    width: 600px;
    max-width: 100%;
    height: 450px;
    transition: all 300ms ease;

}

.scaled {
    transform: scale(0.5) translateY(-50%);
}

div.angersternchen {
    margin-left: calc(50% - 150px);
    width: 300px;
    height: 300px;
}

div.slogan {
    margin: auto;
    width: 600px;
    max-width: 100%;
    height: 150px;
}

h1 {
    margin: 0px;
    margin-bottom: 10px;
    color: #1b1f4f;
}

.yellow {
    color: #fffc01;
}

.white {
    color: #fefefe;
}

.center {
    text-align: center;
}

div.form-wrapper {
    position: relative;
    box-sizing: border-box;
    min-width: 50%;
    max-width: 80%;
    margin: auto;
    margin-top: 40px;
    background: #1b1f4f;
    border-radius: 20px;
    box-shadow: 0px 0px 5px 2px #1b1f4f;
    padding: 25px;
}

div.spinner
{
    position: relative;
    margin: auto;
    margin-top: 80px;
    width: 150px;
    height: 150px;
    background: url( '/assets/loading.svg' );
    background-size: contain;
    background-position: center;
    transition: opacity 1000ms ease;
    opacity: 0;
}

p {
    font-size: 14pt;
}

input {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    font-size: 14pt;
    background: #3e3f7f;
    /*background: #1b1f4f;*/
    border: 0px;
    border-radius: 10px;
    color: #fffc01;
    border-bottom: 1px solid #fffc01;
}

input[type=submit]
{
    margin-top: 10px;
    width: 80%;
    margin-left: 10%;
    cursor:pointer;
    background: #fffecd;
    color: #1b1f4f;
    border-radius: 10px;
    font-weight: bold;
    transition: all 300ms ease;
}

input[type=submit]:hover
{
    background: #fffc01;
}

div.gallery
{
    position: relative;
    box-sizing: border-box;
    background: #ececec;
    top: -180px;
    border-radius: 20px;
    width: 90%;
    height: auto;
    margin-left: 5%;
    padding: 20px;
    transition: opacity 1000ms ease;
    opacity: 0;
    box-shadow: 0px 0px 5px 2px #8c8c8c;
}

div.gallery_picture_frame
{
    box-sizing: border-box;
    position: relative;
    float: left;
    border: 1px solid #1b1f4f;
    background: #c6c6c6;
    border-radius: 10px;
    width: calc( 100% - 20px );
    padding-bottom: calc( 66% - 20px );
    margin: 10px;
    height: 50px;
    transition: all 300ms ease;
    overflow: hidden;
}

div.gallery_picture_frame:hover
{
    cursor: pointer;
    border-color: #fffc01;
    box-shadow: 0px 0px 5px 2px #8c8c8c;
}

div.gallery_picture
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

div.clearfix
{
    clear: both;
}

@media only screen and (min-width: 801px)  {
    div.gallery_picture_frame
    {
        width: calc( 33.3% - 20px );
        padding-bottom: 22%;
        height: 10px;
    }
}

:focus {
    outline: none;
}