footer {
    background-color: #fff;
    color: black;
    padding: 10px 0;
    text-align: center;
    position: inline-block;
    bottom: 0;
    width: 100%;
}

#reminder {
    font-size: 10pt;
    font-style: italic;
}


body {
    text-align: center;
    margin: 0;
    padding: 100;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;

}

.email {
    width: 100%;
    height: 120vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(pexels-thirdman-5256526.jpg);
    background-size: cover;
    background-position: center;
    padding: 10px 10px;
    color: #fff;

}

.logo {
    background-color: #ffffff;
}



.header a.logo {
    font-size: 40px;
    font-weight: bold;
  
  }

.topnav {
    overflow: hidden;
    background-color: #333;
    display: flex;
    justify-content: space-evenly;
}

.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 19px 145px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #212121;
    color: white;
}

.topnav a.active {

    color: white;
}


@media(prefers-reduced-motion) {
    .email {
        transition: none;
    }
}

.email h3 {
    margin-top: 7.5%;
    font-weight: 400;
    font-size: 30px;
    font-weight: 900;
    padding-left: 50px;
}

.email h1 {
    margin-top: 30px;
    font-size: 80px;
    font-weight: 900;
    transition: 1s ease-in-out;
}

.email h1:hover {
    transition: 1s ease-in-out;
    transform: scale(120%);
}

.email p {
    margin: 10px 0 50px;
    padding-left: 50px;
}

form {
    background: #fff;
    display: flex;
    justify-content: center;
    width: 500px;
    margin-left: 33%;
}

form input {
    font-family: 'Poppins';
    border: 0;
    outline: none;
    padding: 10px 20px;
    height: 50px;
    width: 400px;
    font-size: 16px;

}

form button {
    background: rgb(17, 98, 0);
    padding-left: 40px;
    padding-right: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

form button:hover {
    background: rgb(10, 59, 0);
}

span {
    color: rgb(17, 98, 0);
    position: relative;
    padding-left: 50px;
}

/* from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_responsive_header */
.header {
    overflow: hidden;
    background-color: #fff;
    padding: 20px 10px;
}

.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    border-radius: 4px;
}

.header a.logo {
    font-size: 40px;
    font-weight: bold;

}

.header a:hover {
    background-color: #ddd;
    color: black;
}

.header a.active {
    background-color: dodgerblue;
    color: white;
}

.header-right {
    float: right;
}

@media screen and (max-width: 500px) {
    .header a {
        float: none;
        display: block;
        text-align: left;
    }

    .header-right {
        float: none;
    }
}



.align-center {
    display: flex;
    align-items: center;
}


.responsive {
    width: 70px;
    height: auto;
}