body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
.header {
    background-color: #42c2f5;
    margin:0px;
    width:100%;
    padding-left:10px;
    padding-top: 2px;
    padding-bottom: 2px;
    box-sizing: border-box;
}

.shadow {
    background-color: #6d7778;
    width: 100%;
    height:5px;
}

.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 2;
  background-color: white;
  border-radius: 16px;
  padding: 24px;
}

.content a {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 16px;
  background-color: #ee5522;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.content a:hover,
.content a:focus-visible {
  background-color: #d94a1a;
  transform: translateY(-1px);
}
