@import url("all.min.css");

body {
  display:block;
  background-color: white;
  background-image: url("/island.png");
  background-size: cover; /* This makes sure the image covers the entire container */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-attachment: fixed; /* Optional: keeps the background fixed while scrolling */
  margin: 0;
  height: 100vh; /* Full height of the viewport */
  font-family: "Roboto";
  color: white;
  line-height: 1;
}

p, li {
  font-size:16px;
}

.lower {
  margin: auto;
  margin-bottom: 20px; /* Optional: adds some space from the bottom */
  text-align:center;
}

.lower img {
  border-radius: 15px;
  margin: 0 10px;
}

a {
  color: white;
}

.social i {
  font-size: 20;
  background-color: red;
  border-radius:50%;
  padding:0.3em;
}

.social i:hover {
  background-color:black;
}

.content {
  background-color: rgba(33,37,59,0.76);
  padding: 10px 20px;
  margin:auto;
  max-width:500px;
  margin-top: 80px;
  border-radius: 10px;
  text-align: center;
}

.content > * {
  margin-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .no-mobile {
    display: none;
  }
}
