*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

section {
    position: relative;
    width: 100%;
    padding: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF561;
    text-align: center;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
}

header .logo {
    position: relative;
    max-width: 80px;
}

header ul {
    position: relative;
    display: flex;
}

header ul li {
    list-style: none;
}

header ul li a {
    display: inline-block;
    color: black;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}

.presale-content {
    position: relative;
    width: 93%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    line-height: 2rem;
    padding: 5rem;
    text-align: center;
}

.textBox .name {
    font-family: 'Caveat', cursive;
    font-size: 35px;
    margin-bottom: 25px;
}

.textBox {
    font-size: 20px;
}

.presale-content h2 {
    font-size: 7rem;
    padding: 3rem;
}

.presale-content p {
    padding-bottom: 25px;
}

.button a {
    background-color: #3D9662;
    text-decoration: none;
    color: white;
    padding: 2rem;
    font-weight: bold;
    font-size: 25px;
    border-radius: 15px 50px;
}

.content h2 {
    animation: appear 5s;
  }
  
  @keyframes appear {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }

.button {
    margin-top: 100px;
}

.button a:hover {
    opacity: .75;
}


.presale-footer {
    position: absolute;
    width: 100%;
    padding: 1rem 7rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: .75rem;
}

.presale-footer ul {
    position: relative;
    display: flex;
}

.presale-footer ul li {
    list-style: none;
}

.presale-footer ul li a {
    display: inline-block;
    font-weight: 400;
    margin-left: 40px;
    text-decoration: none;
}

.site-links {
    display: flex;
    padding-top: 15px;
}

.site-links a {
    text-decoration: none;
    color: black;
}

.presale-footer p {
    padding: 1rem;
}

.presale-footer .sites a {
    text-decoration: none;
}

