@font-face{
    font-family: 'PT Sans';
    src: url('./PTSans-Regular.ttf');
}
html{
    height: 100%;
}
body{
    font-family: 'PT Sans', sans-serif;
    background-color: #000000;
    color: #ffffff;
    margin: 0;
}
#bg{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0.7;
    background-color: #01251d;
    z-index: -1;
}
article section{
    max-width: 1200px;
    margin: auto;
    padding: 30px 10px;
}
a {
    text-decoration: none;
    color: #3ab8ab;
}
h1 {
    font-size: 40px;
}
#entry{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
#entry section{
    height: 100%;
    width: 38.2%;
    max-width: 38.2%;
    margin: 0;
    background-color: #000000dd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}
#entry-content{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
}
#entry h1{
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    margin: 0;
}
#entry h2{
    font-size: 26px;
    margin: 10px 0 15px 0;
}
#entry h2 span{
    display: inline-block;
    margin: 0 10px;
    color: #777777;
}
#entry h2 span:nth-child(1){
    color: #41b57a;
}
#entry h2 span:nth-child(2){
    color: #41b596;
}
#entry h2 span:nth-child(3){
    color: #41b5b1;
}
#entry a{
    font-size: 26px;
}
#entry-links{
    display: flex;
    flex-direction: row;
    margin-top: 70px;
    justify-content: space-evenly;
    justify-self: flex-end;
    margin-bottom: 40px;
}
#entry-links a{
    font-size: 16px;
    margin-right: 10px;
    padding: 80px 15px 10px 15px;
    color: #ffffff;
    text-transform: uppercase;
    border-bottom-style: solid;
    border-width: 3px;
    transition: background-color 0.3s;
    flex: 1 1 0;
}
#entry-links a:nth-child(1){
    border-color: #41b57a;
}
#entry-links a:nth-child(1):hover{
    background-color: #41b57a;
}
#entry-links a:nth-child(2){
    border-color: #41b596;
}
#entry-links a:nth-child(2):hover{
    background-color: #41b596;
}
#entry-links a:nth-child(3){
    border-color: #41b5b1;
}
#entry-links a:nth-child(3):hover{
    background-color: #41b5b1;
}
#referenzen{
    background-color: #ffffff;
    color: #000000;
}
#ueber{
    background-color: #000000;
}
#impressum{
    background-color: #000000aa;
    color: #ffffff;
}