@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

:root {
    --background-color:  #0C161B;
    --copy-color: #fff;
    --highlight-color: #db0a40;

}

::selection {
    background: var(--highlight-color);
    color: var(--background-color);
  }

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#wrapper {
	max-width: 1600px;
    width: auto;
    position: relative;
    height: 100%;
	margin: 0 auto;
}

body{
	background-color: var(--background-color);
	color:var(--copy-color);
	font-family: Montserrat;
	text-rendering: optimizeLegibility;
	font-weight:50;
	font-size: 16px;

    /*background-image: url(../img/background@2x.png);*/
    
}



#effect{
    height: 100%;
    width: 60%;
    min-width: 765px;
    position: absolute;
    right: 0;
    top: 0;
    /*background-image: url(../img/effect@2x.png);
    background-size: 100% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;*/
}

#visage {
    background-image: url(../img/visage.jpg);
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    width: 55%;
    max-width: 800px;
    height: 100%;
    right: 0px;
    position: absolute;
}








#content{
    display: flex;
    
    flex-direction: column;
    padding: 80px 0 80px 80px;
    /* position: absolute; */
    min-height: 100%;
    width: 50%;
    /* top: 0; */
    /* left: 0; */
    box-sizing: border-box;
    position: absolute;
}

#content div{
    margin: auto 0;
        /*flex: 1 100%;*/
      
}

#logo{
    height:24px;
    margin:0!important;
    /* 
    width: 116px;
    position: absolute;
    top: 80px;
    left: 80px; */
}

#logo img {
    height: 100%;
    width: auto;
}

#copy{
    max-width: 680px;
    /* position: relative;
    left: 80px; */
    margin: -125px 0;
    /* top: 50%; */
}

#copy h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 52px;
}

strike {
    color: #5b6971;
    opacity: 0.5;
}

#copy p {
    font-weight: 500;
    font-size: 16;
    line-height: 24px;
    max-width: 480px;
    width:100%;
    padding: 0 0 0 16px;
    border-left: 6px solid var(--highlight-color);
}

#copy p span{
    /*opacity: 0.5;*/
    color:#5b6971;
}


#copy p a{
    transition: all 0.2s ease-out;
    color:#fff;
    text-decoration: none;
}

#copy p a:hover{
    color: var(--background-color);
    background-color: var(--highlight-color);
}

#smLinks{
    margin: 0!important;
    /* position: absolute;
    bottom: 80px;
    left: 80px; */
}

#smLinks ul{
    list-style: none;
    padding: 0px;
}

#smLinks li {
    display: inline;
    padding-right: 24px;
}

#smLinks li:last-child {
    padding-right: 0px;
}

#smLinks li img{
    width: 24px;
    height: 24px;
    opacity: 0.5;
}


#smLinks li img{  
    transition: all 0.2s ease-out;
}

#smLinks li:hover img{
    fill:var(--copy-color);
    opacity: 1;
}

#impressum{
    display:none;
}



@media all and (max-width: 840px) {
    

        #content {
            width: 100%;
            padding:40px;
            min-height: inherit;
        }

        #content h1 {
            font-size: 24px;
            line-height: 30px;
            margin-top: 480px;
        }

        #content p{
            width: calc(100% - 16px - 6px);
        }

        #visage{
            width: 100%;
            /* max-width: 480px; */
            /* background-position: center 40px;
            background-size: 480px; */

            background-position: center 80px;
            background-size: 420px;
            right: initial;
            
        }

        #copy, #copy p{
            max-width: 100%;
        }

  }