/* == Allgemein =================================================================== */
body{
    font-family: 'Roboto', sans-serif;
    text-align: center;
}
.main{
    position: relative;
    height: 100vh;
}
.content{
    width: 100%;
    position: absolute;
    top: 50%;
}

.logo {
    background-image: url("../img/logo.png");
    background-size: 100% 168px;
    height: 168px;
    width: 100%;
    margin: 0 auto;
}

.red-text{
    color: #ff0000;
}

p{
    font-size: 24px;
    margin-top: 15px;
}
a{
    color: #ff0000;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a:hover{
    color: #ff0000;
    text-decoration: underline;
}


@media screen and (max-width: 1200px) {
    .logo {
    background-size: 100% 139px;
    height: 139px;
}
    
}

@media screen and (max-width: 992px) {
    .logo {
    background-size: 320px 69px;
        width: 320px;
    height: 69px;
}
    p{
        font-size: 18px;
    }
}

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