
body {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0, 0, 0);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:#817e7e;
}
p{
    color:rgb(0, 0, 0);
    margin: 15px;
}

h1,
h2 {
    text-transform:uppercase;
    color:darkorange;
    text-align: center;
    font-family:"western";
}

footer {
    display: flex;
    justify-content: flex-end;
    text-align: center;
    padding-top:  10px;
    margin-right: 15px;
    background-color: orange;
    color: rgb(255, 255, 255);
    width: 100%;
    bottom: 0;
}

nav div{
    font-size: xx-large;
    font-family: cursive;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    background-color: orange;
    padding: 15px;
    font-weight: bold;
}

form{
    font-size:x-large;
    color: darkblue;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    padding: 10px;
}

form input{
    margin: 5px;
    padding: 5px;
    font-size: large;
    border-radius: 5px;
}

about img {
    float: right;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

input[type="submit"] {
    background-color: orange;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: large;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: darkgray;
}

label[for="email"]::before {
    content: "✉️ ";
    margin-right: 5px;    
}
label[for="phone"]::before {
    content: "📞 ";
    margin-right: 5px;    
}