/* 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." */
@media(min-width:30em){.row{width:100%;display:table;table-layout:fixed}.col{display:table-cell}}

@font-face {
  font-family: BlueScreen; /* set name */
  src: url("fonts/BlueScreen.ttf") format("truetype");
}
@font-face {
  font-family: NeonTaste; /* set name */
  src: url("fonts/NeonTaste.ttf") format("truetype");
}

body {
  background-color: white;
  color: black;
  font-family: BlueScreen;
  text-align: center;
  align-content: center;
}

.footer {
  background-image: linear-gradient(to bottom, cyan, white);
}

/* Container needed to position the button. Adjust the width as needed */
.container {
  position: relative;
  width: 20%;
  left: 40%;
}

/* Make the image responsive */
.container img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.container .invis-btn {
  position: absolute;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
}

/* Style the button and place it in the middle of the container/image */
.container .test-btn {
  position: absolute;
  cursor: pointer;
}
