/* -- Global -- */

body {
  font-family: "Poppins", Tahoma, sans-serif;
  color: lightgrey;
  background: linear-gradient(
    135deg,
    hsla(220, 50%, 10%, 1) 0%,
    hsla(220, 20%, 25%, 1) 100%
  );
  margin: 0;
  min-height: 100vh;
}

/* -- Header -- */

header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: flex-end;
  gap: 50px;
  padding: 40px;
  padding-left: 80px;
  border: 1px solid darkslategray;
  background: hsla(220, 50%, 6%, 0.6);
}
h1 {
  font-size: xxx-large;
  margin: 0;
}
h2 {
  font-size: xx-large;
  margin: 3px;
}

/* -- Main -- */

main {
  display: flex;
  min-height: 70vh;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
  font-size: large;
}
section {
  max-width: 700px;
  margin: 20px;
  background-image: url(../images/background.png);
  background-size: 100%;
  border-radius: 35px;
  box-shadow: 0px 0px 30px hsla(220, 50%, 70%, 0.5);
}
p {
  margin: 0 auto;
  padding: 30px;
}
#first-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* -- Footer -- */

footer {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100vw;
  margin: 20px auto;
}
