@font-face {
    font-family: 'Supreme';
    src: url(Supreme-Variable.ttf);
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size: 19px;
}

/* General styles */
body {
    font-family: 'Untitled Sans', Arial, sans-serif;
    font-size: 24px;
    line-height: 1.3;
  
    background: #eae6e5;
    background-color: #ffffff;
  }

/* Header */
header {
    position: fixed;
    top: 32px;
    left: 48px;
    right: 48px;
    padding: 16px 16px 16px 28px;
    border-radius: 100px;
  
    background-color: #ffffff88;
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 12px #00000011;
  
    z-index: 1;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

.header-logo { 
    margin-top: 10px;
    margin-left: 1rem;
    margin-bottom: 10px;
    height: 60px; 
    z-index: 2;
}

.header a.button {
    margin-right: 1rem;
    background-color: #3b3285;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 100px;
    
}

.header a.button:hover {
    background-color: #E03C31;
}

section.hero {
  background-image: url(hero.png);
  background-position: 50% 50%;
  background-size: cover;
  background-color: #eae6e5;

  aspect-ratio: 3 / 2;
  width: 100%;
  max-height: 80vh;
}

section.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px;
  }
  
  section {
    padding: 48px;
  }
  
  h2 {
    font-size: 90px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 32px;
  }
  
  p {
    margin: 0 0 24px;
  }
  
  img {
    max-width: 100%;
  }

/* Footer */
.footer {
    background: #3b3285;
    color: #fff;
    text-align: center;
    padding: 1rem 0px;
}


