* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
      'Lucida Sans', Arial, sans-serif;
  }

html, body {
    flex-direction: column;
    background: #ffccff;
}

  
  nav {
    height: 80px;
    background: #ffe6ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
   position: sticky;
    width: 100%;
  }

  
  .logo {
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
  }
  
  nav a {
    text-decoration: none;
    color: #000;
    padding: 0 1.5rem;
  }
  
  nav a:hover {
    color: #fff;
  }
  
  .main {
    width:100%;
    position: flex;
    flex-grow: 1;
    height: 100%;
  }
  
  .main-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem calc((100vw - 1300px) / 2);
  }
  
  .intro-pane {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0rem 2rem;
    flex: 1 0 50%;
  }
  
  .intro-pane h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
  
  .intro-pane p {
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  
  button {
    padding: 1rem 3rem;
    font-size: 1rem;
    border: none;
    color: #ff99ff;
    background: #000;
    cursor: pointer;
    border-radius: 50px;
    margin: 10px auto;
    display:flex;
    align-items: center;
    justify-content:center;

}
  
  button:hover {
    background: #fff;
    color: #000;
  }
  
  .image-pane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex: 1 0 50%;
}

.cover-image {
  object-fit: contain;
  max-width: 100%;
  max-height: 1000px;
  min-height: 200px;
  min-width: 200px;
  width: auto;
  height: auto;
}



  footer {
    height: 1.5rem;
    background: #ffb3ff;
    display: inline-block;
    align-items: bottom;
    padding: 0rem calc((100vw - 1300px) / 2); 
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    width:100%;
  }
