body{
    background-color: wheat;
    background-repeat: no-repeat;
    background-size: cover;
}
h1{
    color: white;
    border: 5px solid black;
    border-radius: 10px;
    background-color: brown;
    padding:10px;
    text-align: center;

}
img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    
    
}
p{
    border: 0.5px solid red;
    border-radius: 20px;
    padding: 5px ;
    text-align: center;
}
span{
    
    border-radius: 30px;
    padding: 5px;
    background-color: gray;
}

h4{
    border: 0.5px solid white;
    border-radius: 10px ;
    background-color: green;
    padding: 10px;
    text-align: center;
    align-items: center;
    transition: all 2s;
}
h4:hover{
    background-color: yellow;
    color: green;
}
form{
    border: 5px solid black;
    border-radius: 90px;
    padding: 30px;
    background-color: white;
    font-family: sans-serif;
    text-align: center;
    align-items: center;
}

input{
    margin-top: 20px;
    padding: 10px;
    border-radius: 20px;
    color: blue;
    transition: all 1s;
}
input:hover{
    background: #222;
    color: #fff;
    border: 2px solid blue;
}
button{
    padding: 10px;
    margin-top: 30px;
    border-radius: 10px;
    font-family: 'Times New Roman', Times, serif;
    font-size: x-large;
    background-color: red;
    color: aliceblue;
    transition: all 0.9s;
}
button:hover{
    background-color: green;
    color:white;
    border:0.5px solid black;
}
.contact{
    background-color: black;
    color: white;
    font-family: sans-serif;
    border: black;
    border-radius: 0px;
    height: 100px;
    display: block;
    padding: 10px;

}
marquee{
    background-color: yellow;
    color: red;
}

table td,th{
    border: 5px solid blue;
    padding: 10px;
    align-items: center;
}