body{
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow: hidden;
}
.center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Change this to align content to the top */
    align-items: center;
    height: 100vh;
}
.logo {
    padding: 50px;
    margin: 10px;
    width: 20vw;
    height: auto;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: #ffffff;
  background-color: #333; /* SaddleBrown color */
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #555454; /* Sienna color */
}

  iframe {
    border: none;
    padding-bottom: 40px;
}