/* Powered by LamplNet */

/* Font */
@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Black.eot");
    src: local("☺"), url("fonts/Montserrat-Black.woff") format("woff"), url("fonts/Montserrat-Black.ttf") format("truetype"), url("fonts/Montserrat-Black.svg") format("svg");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Bold.eot");
    src: local("☺"), url("fonts/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat-Bold.ttf") format("truetype"), url("fonts/Montserrat-Bold.svg") format("svg");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Regular.eot");
    src: local("☺"), url("fonts/Montserrat-Regular.woff") format("woff"), url("fonts/Montserrat-Regular.ttf") format("truetype"), url("fonts/Montserrat-Regular.svg") format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Montserrat';
    src: url("fonts/Montserrat-Light.eot");
    src: local("☺"), url("fonts/Montserrat-Light.woff") format("woff"), url("fonts/Montserrat-Light.ttf") format("truetype"), url("fonts/Montserrat-Light.svg") format("svg");
    font-weight: 300;
    font-style: normal
}

/* Variables */
:root {
    --breitband-blau: #0f33ff;
    --breitband-grau: #0c0c0c;
}

/* Style */

html {
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0c0c0c; 
    display: flex; 
    flex-direction: column; 
    height: 100vh; 
    overflow: hidden; 
    align-items: center; 
    justify-content: center; 
}

div {
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    align-items: center; 
    justify-content: center; 
}

h1 {
    color: #fff;
    background-color: var(--breitband-blau);
    padding: 10px;
    text-align: center;
    font-size: 3rem;
    margin: 0px;
    /*border-radius: 1rem;*/
}

a {
    background-color: #fff;
    text-align: center;
    font-size: 1rem;
    color: #030b36;
    padding: 5px;
    margin: 0px;
    text-decoration: none;
    width: 75%;
    /*border-radius: 0.4rem;*/
}

a:hover {
    background-color: #fff;
    color: var(--breitband-blau);
}

img {
    width: 80%;
    margin: 0px;
}

div.main-container {
    width: 50%;
    background: #030b36;
    padding-top: 3rem;
    padding-bottom: 3rem;
    /*border-radius: 2rem;*/
    border: 0.5rem solid var(--breitband-blau);
}

@media screen and (max-width: 736px) {

    h1 {
        font-size: 1rem;
    }

    a {
        font-size: 0.7rem;
    }

    img {
        margin: 1rem;
    }
    
}