/* CSS Coded by Cybercroft Media © 2024 */

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/poppins-v21-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;

}

main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    background: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2) 10px,
    rgba(0, 0, 0, 0.3) 10px,
    rgba(0, 0, 0, 0.3) 20px
    ), url(Cybercroft-Media-Webdesign-Rostock-back.jpg);
    background-color: rgba(0,0,0, 0.5); /* 50% Transparente Hintergrundfarbe */
    padding-left: 100px; /* Abstand zur linken Seite */
    background-size: cover;
    background-position: center;
}    
.content {
    max-width: 800px; /* Reduziert die Breite, um einen Kreis zu formen */
    color: #fff;
    padding: 120px;
    background: rgba(black, 0.5); /* Hintergrundfarbe für besseren Kontrast */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    text-align: center;

}
.content h1, .content p, .content a {
    margin: 10px 0;

}
.content h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase;
}

.content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.content a {
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 0px solid #fff;
    transition: color 0.3s;
}

.content a:hover {
    color: #eeeeee;
}
.content .no-decoration {
    text-decoration: none !important;
    font-size: 0.7rem;
    color: black;
    
    transition: color 0.3s;
}

.content .no-decoration :hover {
    color: #eeeeee;
}

#footer-link {
    color: #fff;
}
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.2rem;
    }

    .content a {
        font-size: 1rem;
    }
}