body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f0f0f0;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  display: block;
  margin-top: 40px;
  border: 2px solid #1C64F2; 
}


h2 {
  margin: 12px 0 -1px;
}

.bio {
  color: grey;
}

.button {
  margin: 10px auto;
  padding: 20px 30px;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  width: 30%;
  max-width: 400px;
}

.button + .button {
  margin-top: 20px;
}

/* Media query for devices with a screen size less than 1300px */
@media (max-width: 1300px) {
  .profile-pic {
    width: 240px;
    height: 240px;
  }
  
  h2 {
    font-size: 40px;
  }

  .bio {
    font-size: 32px;
  }

  .button {
    width: 60%;
    max-width: 600px;
    padding: 40px 60px;
    font-size: 32px;
  }

  .button + .button {
    margin-top: 40px;
  }
}

.button-main {
  background-color: white;
  color: #1C64F2;
  border: 2px solid #1C64F2;
}

.button-main:hover {
  background-color: #1C64F2;
  color: white;
}

.button-secondary {
  background-color: #1C64F2;
  border: none;
}

.button-secondary:hover {
  background-color: white;
  color: #1C64F2;
  border: 2px solid #1C64F2;
}

.button-tertiary {
  background-color: #0e4d4d;
  border: none;
}

.button-tertiary:hover {
  background-color: white;
  color: #0e4d4d;
  border: 2px solid #0e4d4d;
}

.button-quaternary {
  background-color: transparent;
  color: #0e4d4d;
  border: none;
}

.button-quaternary:hover {
  background-color: transparent;
  color: #0e4d4d;
  border: none;
  text-decoration: underline;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

.toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.bmc-pic {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-top: 20px;
}

@-webkit-keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@keyframes fadein {
  from { bottom: 0; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}

@-webkit-keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}

@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}
