* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
}

.container {
  background: linear-gradient(135deg, #0142FE, #F549E9, #FFD23F);
  background-size: 600% 600%;
  animation: gradientMove 15s ease infinite;
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F1E3F3;
  text-align: center;
  padding: 0 20px;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background-color: rgba(39, 39, 39, 0.5);
  z-index: 1;
}

.content {
  z-index: 2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.iso-logo{
  width: 100px;
  margin-bottom: 30px;

}

.brand {
  font-size: 1rem;
  letter-spacing: 2px;
  background-color: #F1E3F3;
  color: #272727;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
