@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

body {
      background-color: #000000;
      font-family: 'Figtree', sans-serif;
      color: #FFFFFF;
      margin: 0px;
}

main {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    height: 5vh;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
}

nav {
    padding-top: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  
}

.content {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-wrapper {
    max-width: 56rem;
}

h1 {
    font-size: 3rem;
    margin: 0;
    margin-bottom: 1.5rem;
}

.subline {
    color: #C2C1C2;
    font-size: 1.25rem;
    margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  max-width: 56rem;
  padding: 0;
  margin-bottom: auto;
}

.label {
  font-weight: bold;
  padding: 0;
}

.heading-impressum {
    margin-top: 6rem;
}

.value {
  padding: 0rem;
}

.value a {
    text-decoration: none;
    color: #7C5BE7;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem; 
  color: #A5A5A5;
}

.information {
    margin: 2rem 0 4rem 0;
}

.footer-impressum {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.information p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-content a {
    text-decoration: none;
    color: #A5A5A5;
}

@media screen and (min-width: 1280px) {
  .container {
    padding-right: 3rem;
    padding-left: 3rem;
  }

  nav {
    padding-top: 1.75rem;
  }

  h1 {
  font-size: 3rem;
  }
}

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

    main{
        height: auto;
    }

    .footer-content {
    flex-flow: column;
    
    }

    .footer-impressum {
        flex-flow: column;
        padding-top: 6rem;
    }
    h1 {
    font-size: 2.25rem;
    }
    
    .heading-impressum {
    margin-top: 8rem;
    }
    
    .subline {
    font-size: 1.125rem;
    }
    
    .info-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    }
    
    .value {
    padding-bottom: 1rem;
    }
}