
section{
    display: flex;
    justify-content: space-around;
    flex-flow:row wrap;
    gap:10px
}

section p{
    width:250px;
    height:250px;
    background-color: rgb(192, 165, 165);
    font-size: 18px;
    text-align: center;
    /* most readable generally */
    font-family:Arial, Helvetica, sans-serif;

    /* you can use flex to align an items vertically inside a flexbox */
    display: flex;
    align-items: center;
    line-height: 36px;
    padding:0 10px;
    margin: 5px 0;

}

i{
    font-size: 50px;
}

ul{
    display: flex;
    justify-content: space-around;
    background-color: aliceblue;
    width:100%
}

#main-menu li{
    font-size: 20px;
    padding:5px;
    text-align: center;
    border-bottom: 1px #161616 solid;
}

/* attributes of link  */
#main-menu A:link{
    color:tomato
}
/* attributes clicked link */
#main-menu a:visited{
    color:rgb(138, 185, 255)
}

#main-menu a{
    /* removes underlighn from the link */
    text-decoration: none;
    color:tomato
}
header{
    display: flex;
    justify-content: space-around;
    background-color: rgb(73, 73, 73);
    box-shadow: #161616 0 2px;
}

header h1{
    width:75%;
    font-size: 20px;
    text-transform: capitalize;
    font-size: 45px;
    padding:5px;
    color:rgb(211, 211, 211);
}

form{
    margin: 0 10px 0 10px;
    display: flex;
    flex-flow: column wrap;
    gap:6px;
}

form p{
    margin: auto;
    width:350px;
}
.Contact{
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
}
label{
    font-family: Arial, Helvetica, sans-serif;
}
input{
    margin-bottom: 10px;
}
input, textarea{
    width:350px;
    font-size: 18px;
    border-radius: 20px;
}
#submitInfo{
    margin: auto;
}
/* honeypot */
#address{
    display: none;
}
form p input{
    background-color: aliceblue;
}

form p span{
    color: red;
}

#main-menu{
    display:none;
}

h2{
    margin: auto;
    text-align: center;
    font-size: 30px;
}

.icon{
    margin:5px;
    color: wheat;
}

html{
    scroll-behavior: smooth;
}