/* styles.css */
@font-face {
    font-family: 'BenzinExtraBold';
    src: url('Fonts/Benzin Extra Bold.ttf') format('truetype');
  }
  
  @font-face {
    font-family: 'PPNeueMontrealMedium';
    src: url('Fonts/PPNeueMontreal-Medium.otf') format('opentype');
  }
  
  body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #ffffff; /* Optional: Hintergrundfarbe */
    font-family: sans-serif;
    position: relative;
  }
  
  .container {
    text-align: center;
  }
  
  h1 {
    font-family: 'BenzinExtraBold', sans-serif;
    font-size: 6rem; /* Schriftgröße für Portfolio */
    margin: 0;
  }
  
  p {
    font-family: 'PPNeueMontrealMedium', sans-serif;
    font-size: 15px; /* Schriftgröße für Coming Soon */
    margin: 0;
  }
  
  .corner-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'PPNeueMontrealMedium', sans-serif;
    font-size: 15px;
    color: black;
  }
  
  .top-left {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  
  .bottom-left {
    position: absolute;
    bottom: 10px;
    left: 10px;
  }
  
  .bottom-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
  
  a {
    color: black;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }