.basic-needs {
    text-align: center;
    font-family:Pixelify Sans;

}

.basic-needs2 {
    font-family:Pixelify Sans;
    font-size:small;
}

button {
    background-color:#f6e376;
    box-shadow: 5px 5px 7px rgba(66, 53, 53, 0.6);
    border:4px solid #dac653;
    margin: 10px;
    color: #c4b24c;
    font-size:20px;
    font-weight: bold;
    text-align: center;
    border-radius:100px;
    cursor: pointer;
    font-family:Pixelify Sans;
    
    transition: 0.3s;
}

Button:hover{
    transform: scale(1.1);
    transition: 0.5s;

}

body {
  margin: 0;
  height: 100%;
  background-color: #f7d300;
  animation: scrollCheckerboard 2s linear infinite;
  background-size: 40px 40px;
  background-image:
    linear-gradient(45deg, #e5bb00 25%, transparent 25%),
    linear-gradient(-45deg, #e5bb00 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e5bb00 75%),
    linear-gradient(-45deg, transparent 75%, #e5bb00 75%);
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  background-repeat: repeat;
  image-rendering: pixelated;
}

@keyframes scrollCheckerboard {
  from {
    background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  }
  to {
    background-position: 40px 40px, 40px 60px, 60px 20px, 20px 40px;
  }
}

.bounce {
    position: relative;
    animation: bounce 1.5s ease-in-out infinite;
  }

  @keyframes bounce {
    0%, 100% {
      top: 0;
    }
    50% {
      top: 25px;
    }
  }
