@font-face {
    font-family: 'Melting';
    src:	url('fonts/Melting-Bold.otf') format('otf'),
            url('fonts/Melting-bold.woff2') format('woff2'),
            url('fonts/Melting-bold.woff') format('woff');
               
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Drive';
    src: url('fonts/DriveMono-Regular.woff2') format('woff2'),
        url('fonts/DriveMono-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Drive Bold';
    src: url('fonts/DriveMono-Bold.woff2') format('woff2'),
        url('fonts/DriveMono-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


body {
    background: #FF076A;
    color: #060723;
    position: relative;
}

.img-dark {
    display:none;
}



* {
    box-sizing:border-box;
}

body {
    font-family:"Drive Mono",monospace;
    width:100vw;
    max-width: 100vw;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}


header,main, footer {
    max-width:1400px;
    width:100%;
    margin:0 auto;
}

main {
    margin-top:50px;
}

footer {
    padding-top:50px;
    /* margin-top:auto; */
}

header {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;  
}

h1 { 
    font-family:"Melting",sans-serif;
    font-size:6rem;
    font-weight: normal;
    font-style: normal;
    line-height: 1.2;
    /* width: 75%; */
    /* float:left; */
}
header img {
    max-width: 100%;
    width: auto;
    /* max-width: 25%;
    float: right; */
}
h1 .word {
    /* margin-right: 30px; */
}
h1 .second-line {
    text-indent: 1.5em;
    display: inline-block;
}

h2 {
    font-family:"Drive" !important;
    font-size:2.5rem;
    color:#060723;
}



.elements {
    /* display: flex;
    flex-wrap:wrap;
    display:grid;
    grid-template-columns:1fr;
    grid-gap:15px; */
}

 @media (min-width:768px) { 
    .elements {
         grid-template-columns:repeat(2,minmax(0, 1fr));
    }
 }

 @media (min-width:1024px) { 
    .elements {
         grid-template-columns:repeat(4,minmax(0, 1fr));
    }
 }




.logo { 
    max-width:250px;
    height: 280px;
    display: inline-block;
    align: left;
    vertical-align:top;
}


.logo img {
    //display: block;
    max-width:100%;
}
.logo p {
    font-size: .8rem;
    color:#61616F;
    max-width: 90%;
}
.logo a, .logo a:hover, .logo a:active, .logo a:visited {
    text-decoration: none;
    color: #060723;
    font-size: .9rem;

}
.buttons {
    margin-top:50px;
}

.button {
    background-color: #060723;
    padding: 20px 40px;
    color: #F7F7F8; 
    display: inline-block;
    margin: 0px auto 15px;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: "Drive Bold";
    width:100%;
    text-align: center;
}

@media (min-width:768px) {
    .button {
        width:auto;
    }
}

.impressum {
    font-size: .8rem;    
}

.impressum ul {
    display: table;
    padding-left: 0;
}

.impressum li {
    list-style: none;
    display: inline;
    float: left;
}
.impressum li:before {
    content: " | ";
    margin-left: 8px;
}
.impressum li:first-child:before {
    content: "";
    margin-left: 0;
}
.impressum a, .impressum a:hover, .impressum a:active, .impressum a:visited {
    color:#060723;

}

@media (prefers-color-scheme: dark) {
    body {
        background: #060723;
        color: #F7F7F8;
    }

    .img-light {
        display:none;
    }

    .img-dark {
        display: inline-block;
    }
    .logo p {
        color: rgba(247, 247, 248,.5);
    }
    .logo a, .logo a:hover, .logo a:active, .logo a:visited {
        color: #F7F7F8;
    }
    .button {
        background-color: #F7F7F8;
        color: #060723; 
    }
    .impressum a, .impressum a:hover, .impressum a:active, .impressum a:visited {
        color:#F7F7F8;
    
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
body {
padding: 20px 30px;max-width: 100%;
}
main {
    
}
h1 {
font-size: 2rem;
}
h1 .word {
margin-right: 15px;
}
h1.second-line{
    margin-left: 8rem;
}
.logo {
width: 80%;
height: auto;
margin-bottom: 15px;
}
.logo img {
height: 90px;
}

.impressum li {
    list-style: none;
    display: block;
    float: none;
}
.impressum li:before {
    content: " ";
    margin-left: 0px;
}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h1.second-line{
        margin-left: 14rem;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px){
    h1 {
        font-size: 3.5rem;
    }
    h1.second-line{
        margin-left: 14rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

