body{
    margin:0;
    padding:0;
}

.wrapper{
    padding-top: 75px;
}

.first-section {
    padding-top: 30px;
}

p, li, a{
    font-family: "Aileron-SemiBold";
}

.button {
    display: inline-block;
    text-align: center;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    font-family: "Montserrat-Black";
    transition: all .3s ease;
    cursor:pointer;
}

.yellow {
    background: rgb(255,223,70);
    background: linear-gradient(90deg, rgba(255,223,70,1) 0%, rgba(255,243,0,1) 100%);
    color: #0060b3;
}

.blue {
    background: rgb(0,109,192);
    background: linear-gradient(90deg, rgba(0,109,192,1) 0%, rgba(0,138,222,1) 100%);
    color: rgb(255,223,70);
}

.yellow:visited {
    text-decoration: none;
    color: #0060b3;
}

.yellow:hover {
    text-decoration: none;
    transform: scale(1.05);
    transition: all .3s ease;
}

.blue:visited {
    text-decoration: none;
    color: rgb(255,223,70);
}

.blue:hover {
    text-decoration: none;
    transform: scale(1.05);
    transition: all .3s ease;
    color: rgb(255,223,70);
}

.white-link{
    color:white;
    text-decoration: underline;
    font-size: 18px;
    font-weight: normal;
}

.white-link:visited{
    color: white;
    text-decoration: underline;
    display: block;
}

.white-link:hover {
    color: white;
}

.center {
    text-align: center;
}

.footnote {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footnote p{
    font-size:12px !important;
}



@media only screen and (max-width: 384px) {
    h2{
        font-size:25px!important;
    }
}