/* heeeeeeeeyyyy ^__^ */

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Consolas', monospace;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.background-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("images/ditherapple.png");
  background-size: cover;
  background-position: center;
  opacity: 100%;
  display: flex;
  justify-content: center;
  align-items: center;    
}

.text-overlay {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 10px;
  color: #000;
  max-width: 800px;
  
}

h1, h2, h3 {
  color: #000;
  margin-bottom: 10px;
}

p {
  font-size: 15px;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

ul {
  font-size: 15px;
  color: rgb(0, 0, 0);
  padding-left: 20px;
}

a {
  color: blue;
  font-size: 14px;
  text-decoration: none;
}

a:hover {
  color: rgb(30, 0, 255);
  font-style: italic;
}

::selection {
  color: #fff;
  background: rgb(0, 26, 255);
}

button {
  position: fixed;
  top: 5%;
  left: 5%;
  font-size: 18px;
  padding: 10px;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
}

button:hover {
  font-style: italic;
  color: blue;
}


