body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

.logo{
    height: 10%;
}

h2 {
  font-size: 36px;
  font-weight: bold;
  color: grey;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#dropZone {
    width: 50%;
    text-align: center;
    display:flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #b1b2b2;
    border-radius: 10px;
    margin-top: 30px;
    height: 100px;
    cursor: pointer;
}

#dropZone.highlight {
    background-color: #e3f2fd;
}

.btn {
  background-color: #d10a10;
  color: white;
  width: 30%;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn:hover {
  background-color: #d10a10;
  transform: translateY(-4px);
}