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

body {
  background-color: #efefef;
  min-height: 100dvh;
  line-height: 1.1;
  font-weight: normal;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  color: #435c71;
  letter-spacing: 0;
  --blue: #006fe6
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}


p {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.unsubscribe-notes {
  text-align: left;
}

.unsubscribe-notes ul,
.unsubscribe-notes p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

li {
  margin-bottom: 5px;
}


.wrapper {
  height: 100vh;
}

header {
  width: 100%;
  min-height: 40px;
  padding: 5px 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  height: auto;
  display: inline-block;
}

.logo-xracademy {
  width: 150px;
}

.logo-movio {
  width: 70px;
}

.logo-funbox {
  width: 40px;
}

.logo-entertainu {
  width: 40px;
}

.content-wrapper {
  margin: 50px auto 0;
  padding: 0 20px;
  max-width: 900px;
}

button {
  padding: 15px 25px;
  background-color: var(--blue);
  border-radius: 4px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  margin: 0 auto 15px;
  display: block;
}

button.return-to-portal {
  color: black;
  background-color: white;
  border: 1px solid #c1c1c1;
}

button:hover {
  filter: brightness(90%);
}

.spinner {
  margin: 0 auto 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid var(--blue);
  border-color: var(--blue) transparent var(--blue) transparent;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

a {
  color: var(--blue);
}
