/*css for homework form*/

*{
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}

body{
    background: linear-gradient(180deg, rgb(71, 39, 148), rgb(255, 88, 46));
    align-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    color: rgb(255, 255, 255);
}

/* nav bar */
.topNav {
    overflow: hidden;
    background-color: #6b6464;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}
.topNav a:first-child{
    margin-left: 35%;
}


.topNav a{
    float: left;
    display: block;
    color: #b3acac;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 19px;

}

.topNav a:hover{
    background-color: blue;
    color: white;
}

.topNav .icon {
    display: none;
}

.topNav a.active{
    background-color: rgb(27, 27, 75);
    color: aliceblue;
}

/*media query to make nav bar vanish*/
@media screen and (max-width: 600px){
    .topNav a:not(:first-child){
        display: none;
    }
    .topNav a.icon{
        margin-left: 0;
        float: right;
        display: block;
    }
    .topNav.responsive{
        position: relative;
    }
    .topNav.responsive .icon{
        position: absolute;
        right: 0;
        left: 0;
    }
    .topNav.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
}

/* END nav */
input{
    background-color: white;
    border: none;
    border-radius: 54px;
    min-width: 270px;
    font-size: 20px;
    padding: 20px;
    box-shadow: 0 4px 10px #000;
    
    
}

input:focus{
    outline: none;
}

p{
    font-size: 20px;
}

h1{
    font-size: 60px;
}

