* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: black;
    font-family: 'Roboto', sans-serif;
}

body {
    color: #bababa;
}

a {
    text-decoration: none;
    color: #bababa;
}

  

#home {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


#home-impressum {
    width: 70%;
    margin: 0 15%;
    height: 100%;
}

#impressum {
    width: 70%;
    margin: 0 15%;
    height: 7em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 0.001em solid white;
}

#impressum a {
    transition: all 0.2s ease-in-out;
}

#impressum a:hover {
    text-decoration: underline;
}

#home-content {
    font-size: 7em;
    position: relative;
    text-decoration: none;
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;          /* Likely future */  
    padding: 0 0.3em;
    transition: all 0.2s ease-in-out;
    font-family: 'Audiowide', cursive !important;
}

#home-content:hover {
    cursor: pointer;
}

#home-content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

#home-content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

#home-content:hover:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#home-content:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

#home-content-lines:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
  
#home-content:hover #home-content-lines:before {
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

#home-content-lines:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background-color: white;
    visibility: hidden;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
  
#home-content:hover #home-content-lines:after {
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

#home-content:hover {
    color: black;
    background: white;
    transition: all 0.5s ease-in-out 0.1s;
}


  







#nav-grid {
    background: black;
    position: fixed;
    width: 70%;
    margin: 0 15%;
    height: 4em;
    top: 0;
    left: 0;
    height: 4em;
    display: grid;
    grid-template-columns: 1fr 3fr 1.5fr 3fr 1fr;
    grid-template-rows: 4em;
}


.nav-item {
    display: flex;
    align-items: center;
}




.nav-navigation {
    justify-content: flex-end;
    font-size: 1.2em;
}

.nav-navigation-item {
    margin-left: 1em;
}

.nav-socials {
    justify-content: flex-start;
}

.nav-navigation-item:hover, .nav-socials-item:hover {
    text-decoration: underline;
    cursor: pointer;
}

.nav-navigation a:hover, .nav-socials a:hover {
    text-decoration: underline;
}

.nav-logo {
    justify-content: center;
    font-size: 2.2em;
}

.nav-logo i:hover {
    cursor: pointer;
}


