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;
    margin-left: 80px;
}

h1 {
    font-size: 3em;
    font-family: 'Roboto', sans-serif;
    color: #333;
    margin: 0;
    padding: 20px;
}

.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 */
}

.image-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.my-image {
  width: 25%;
  margin: 1%;
}
iframe {
  padding-bottom: 20px;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: #333;
}