*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font: 100% normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #444444;
}
html{
    width: 100%;
}
header{
    background-image: url(/images/conor-luddy-IVaKksEZmZA-unsplash.jpg);
    /* text-align: center; */
    background-repeat: no-repeat;
    background-position: center;
    height: 25em;
    background-size: 100% ;
    width: 100%;
    margin: 0;
}
h1{
    padding: 0.5%;
    color: #ffffff;
    font-size: 1.975em;/*30/16*/
}
.fancy{
    color: #ff9900;
    font-style: italic;
}
#fancyLarge{
    font-size: 3.125em;
    text-align: center;
    padding-top: 2em;
}

#keep{
    text-align: center;
}
#rule{
    border-top: #ffffff solid 4px;
    width: 50%;
    margin: 0 auto;
}
#keep p{
    color: #cccccc;
    padding: 10px;
    font-size: 1.4375em;
}
ul{
    display: inline-flex;
    padding-inline-start: 0;
}
li{
    list-style: none;
    color: #faebd7;
    padding: 0.3em;
    border-radius: 10px;
}
li:hover{
    color: #FF9900;
    transition: all 0.7s;
}
a{
    text-decoration: none;
    padding: 4px;
    font-size: 1.25em;
}
/* about styles */
#about img{
    width: 40%;
    /* height: 50%; */
}
@media (max-width: 480px){
    #about{
        flex-direction: column;
    }
    #about img{
        width: 90%;
    }
    #caption p{
        width: 100%;
        padding-bottom: 10px;
    }
}
#about{
    /* background-color: #9e9587; */
    color:#ffffff;
    display: flex;
    justify-content: space-around;
    padding: 20px;
    margin-top: 0;
}
#caption{
    width: 100%;
    padding-bottom: 1px;
}

/* out team styles */
#team{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    width: 90%;
    justify-content: center;
}
#text{
    margin: 10px;
}
.members img{
    width: 210px;
}
.members{
    margin: 3% 5%;
}
.members h3, .members p, #contact h3{
    color: #ff9900;
}
/* contact styles */
#contact{
    background: linear-gradient(200deg, #000000, #333333, #444444, #000000);
    width: 100%;
    margin: 0;
    text-align: center;
}
#input{
    margin: 0 auto;
}
form{
    display: flex;
    flex-direction: column;
}
input{
    width: 60%;
    padding: 5px;
    margin: 18px auto;
}
form :last-child{
   padding-bottom: 50px;
}
#brands img{
    width: 30px;
    margin: 15px;
}
/* footer styles */
footer{
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
}