/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

/* Set font family for entire document */
body {
  font-family: 'Inter', sans-serif;
}

/* Set background image */
body {
  background-image: url('../images/tea.jpg');
  background-size: cover;
  background-position: center;
}

/* Style buttons */
.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  padding-right: 50px;
}

.button {
  background-color: white;
  border: 2px solid black;
  color: black;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 26px;
  margin: 10px auto;
  border-radius: 25px;
  cursor: pointer;
  width: 300px;
  font-weight: bold;
  opacity: 0;
  animation-name: button-animation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.button:hover {
  background-color: #f5a623;
  color: #ffffff;
}

@keyframes button-animation {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/* Delay each button animation */
.button:nth-child(1) {
  animation-delay: 0.1s;
}

.button:nth-child(2) {
  animation-delay: 0.2s;
}

.button:nth-child(3) {
  animation-delay: 0.3s;
}

.button:nth-child(4) {
  animation-delay: 0.4s;
}

.button:nth-child(5) {
  animation-delay: 0.5s;
}

.button:nth-child(6) {
  animation-delay: 0.6s;
}

/* Style icons */
.button a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button .icon {
  font-family: 'Font Awesome 5 Free';
  font-size: 24px;
  margin-right: 10px;
}

/* Add margin to top of button container */
.button-container {
  margin-top: 100px;
}

/* Style for the Same Day Emergency button */
.emergency {
  background-color: red;
  color: white;
  position: absolute;
  top: 10px;
  left: 10px;
  margin-left: 50px;
}

.emergency-blink {
  background-color: #ff3333;
  color: white;
}

@media only screen and (max-width: 768px) {
  .button-container {
    flex-direction: column;
    margin-top: 50px;
  }

  .button {
    width: 100%;
  }

  .emergency {
    margin-left: 20px;
      width: 85%;
  }
}

@media only screen and (max-width: 480px) {
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: 100%;
  }

  .emergency {
    margin-left: 0;
    margin-top: 10px;
    width: 85%;
  }

  .copyright {
    font-size: 7pt;
    color: white;
    text-align: center;
    margin-top: 20px;
 
