/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: red; /* For browsers that do not support gradients */
  background-image: linear-gradient(45deg, #FF7A7A, #5CC4FF);
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "asap";
  height: 100%;
}

.bodyBulk {
  margin: 4%;
  margin-top: 150px;
}

header {
  text-align: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #FFFFFF7A;
}

.button {
  background-color: white;
  border: none;
  color: green;
  padding: 16px 6px;
  text-align: center;
  align-items: center;
  vertical-align: text-bottom;
  text-decoration: none;
  display: inline-block;
  font-family: "asap";
  border-radius: 12px;
  font-size: 20px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.buttonArt {
  background-color: white; 
  color: black; 
  border: 2px solid #04AA6D;
}

.buttonArt:hover {
  background-color: #04AA6D;
  color: white;
}

.button:hover {
  background-color: #04AA6D;
  color: white;
}

footer {
  text-align: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #1919194F;
}

footer .soc{ 
  margin: 10px;
  align-items: center;
}