* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to bottom, #0a1128, #1a2847, #0a1128);
  width: 100vw;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  font-family: sans-serif;
}

.wrapper {
  height: 100%;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.5rem;
}

.header {
  display: flex;
    flex-direction: column;
    height: 6rem;
  justify-content: center;
  align-items: center;
}

.logo {
  background: linear-gradient(to right, #00ff87, #60efff, #00ff87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 3rem;
}

.slogan-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.slogan {
    color: rgba(0, 255, 135, 0.8)
}

.map {
  height: 25rem;
  border-radius: 0.5rem;
  background: url("../images/startpageformap.png") center / cover no-repeat;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
    border-radius: inherit;
}

.buttons {
  display: flex;
  height: 3rem;
  border-radius: 0.5rem;
  gap: 0.5rem;
}

.sub-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  background-color: rgba(0, 255, 135, 0.8);
  color: #0a1128;
  text-decoration: none;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 0.5rem;
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}

.sub-button:hover {
  background-color: rgba(0, 221, 117, 0.8);
}

.unsub-button {
background: rgba(255, 77, 109, 0.85);
  color: #0a1128;
  text-decoration: none;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 0.5rem;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
    gap:0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.trash-icon {
  height:100%
}

.unsub-button:hover {
  background-color: rgba(230, 54, 90, 0.9);
}

.sub-button:hover, .unsub-button:hover {
    cursor: pointer;
}

.info {
  background-color: brown;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.paragraphBox {
  display: flex;
  flex-direction: column;
}

.positions {
  background-color: cadetblue;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.timeStamp {
  background-color: chartreuse;
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info,
.positions,
.timeStamp,
.map {
  background-color: rgba(26, 40, 71, 0.5);
  border: 2px solid rgba(0, 255, 135, 0.1);
}

.info h3,
.positions h3,
.timeStamp h3 {
  color: #00ff87;
}

.info p,
.positions p,
.timeStamp p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  body {
  }

  .wrapper {
    padding: 0 1rem 2rem 1rem;
  }

  .header {
    height: 5rem;
  }

  .map {
    height: 25rem;
  }

  .buttons {
    height: 3rem;
  }

  .info {
  }

  .positions {
  }

  .timeStamp {
  }
}

@media (max-width: 353px) {
    .logo {
        font-size: 2rem;
    }

    .slogan-container {
        display: none;
    }
}

