#logo {
    width: 150px;
    height: 150px;
    margin-left: 10px;
}
.nav {
    flex-direction: row;
    display: flex;
    outline:solid;
    outline-color: rgba(137,137,137, .5);
    align-items: center;    
    width: 100%;
    margin: 0;
    height: fit-content;
    background-color: white;
    box-shadow: 0 3px 6px 0 rgba(50,50,50,.3);
}
.body {
    background-color: #f5f5fa;
}

#title {
    font-size: 3rem;
    margin-left: 30%;
}

.upload-area {
    border: 2px dashed #999;
    padding: 40px;
    text-align: center;
    margin: 30px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    min-height: 200px;
  }
  
  .upload-area.dragover {
    background-color: #f0f8ff;
  }

/* From Uiverse.io by Madflows */ 
.button {
    position: relative;
    overflow: hidden;
    height: 3rem;
    padding: 0 2rem;
    border-radius: 1.5rem;
    background: #3d3a4e;
    background-size: 400%;
    color: #fff;
    border: none;
    cursor: pointer;
    width: 300px;
    height: 100px;
    margin-top: 20px;
    justify-content: center;
  }
  .wrapper-class {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .button:hover::before {
    transform: scaleX(1);
  }
  
  .button-content {
    position: relative;
    z-index: 1;
    font-size: 2rem;
  }
  
  .button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    width: 100%;
    height: inherit;
    border-radius: inherit;
    background: linear-gradient(
      82.3deg,
      rgba(150, 93, 233, 1) 10.8%,
      rgba(99, 88, 238, 1) 94.3%
    );
    transition: all 0.475s;
  }
  .site-footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 1px solid #ddd;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-content {
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
  }
  
  .site-footer h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .site-footer h3 {
    font-size: 1.4rem;
    margin-top: 30px;
  }
  
  .site-footer p, 
  .site-footer ol {
    margin-top: 10px;
  }
  
  .site-footer ol {
    padding-left: 20px;
  }
  
  @media screen and (max-width: 600px) {
    .site-footer {
      padding: 30px 15px;
    }
  
    .footer-content {
      font-size: 0.95rem;
    }
  
    .site-footer h2 {
      font-size: 1.5rem;
    }
  
    .site-footer h3 {
      font-size: 1.2rem;
    }
  }
  
  