@font-face {
  font-family: "Satoshi";
  src: url("../font/Satoshi-Variable.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: lightgoldenrodyellow;
  font-family: "Satoshi";
}

h1{
  margin-bottom: 40px;
  font-size: 3rem;
  text-align: center;
}

.option-buttons{
  display: flex;
  gap: 25px;
}

.option-button{
  font-size: 16px;
  padding: 20px 40px;
  border:  3px solid black;
  background-color: forestgreen;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  text-decoration:none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.option-button:hover{
  background-color: darkgreen;
  transform: scale(1.05);
}

.logo{
  border-radius: 50%;
  border: 5px solid black;
  height: 250px;
  width: 250px;
  object-fit: cover;
  display: block;
  margin: 50px auto;
}
