* {
    margin: 0;
    padding: 0;
}

body {
    background-image: url("background1.png");
    background-size:cover;
    background-attachment:fixed;
    background-color:#CCCCCC;
}

.header {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header img {
    height: 80%;
}

.content {
    width: 80%;
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.copy-to-clipboard {
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

#mc-link {
    width: 400px;
    height: 10px;
    font-size: 1.2em;
    padding: 10px;
    margin-right: 20px;
}

button {
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
}

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.button-group a {
    font-size: 1.2em;
    color: #fff;
    background-color: #000;
    padding: 10px 20px;
    margin-right: 20px;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 5px;
    cursor: pointer;
}

.button-group a:last-child {
    margin-right: 0;
}

.footer {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2em;
    text-align: center;
    color: #fff;
}


 
.button-7 {
    background-color: #315cfd;
    border: 1px solid transparent;
    border-radius: 3px;
    box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.15385;
    margin: 0;
    outline: none;
    padding: 8px .8em;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
  }

  .button-7:hover,
  .button-7:focus {
    background-color: #315cfd;
  }

  .button-7:focus {
    box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
  }

  .button-7:active {
    background-color: #315cfd;
    box-shadow: none;
  }

  div {
    position: relative;
  }
  
  input {
    width: 6.5em;
    color: #3caaff;
    font-size: inherit;
    font-family: inherit;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom-color: #3caaff;
  }
  
  input:focus {
    outline: none;
  }
  
  input::placeholder {
    color: #3caaff;
  }
  
  span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #3caaff;
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.5s ease;
  }
  
  input:focus ~ span {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  

