*{
    padding: 0;
    margin: 0;
}

main{
    font-family:Georgia, 'Times New Roman', Times, serif;
    
    
}


header{
    background-color: rgb(226, 165, 11);
    display: flex;
    align-items: center;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
}

header img{
    width: 150px;
    flex: 0;
}

nav a{
    text-decoration: none;
    color: black;
    transition: .5s;
    font-weight: bold;
    font-size: larger;
}

a#active{
    font-weight: bold;
    color: black;
    text-shadow: 1px 1px 5px white;
}

h1 {
    text-align: center;
    margin: 10px;
}

h2 {
    text-align: center;
    margin: 10px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    
    
    border-radius: 5px;
  
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ac7f05;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: transparent;
    font-weight: bold;
}

input[type="email"]
 {
    background-color: transparent;
    width: 50%;
    padding: 10px;
    border: 1px solid #ac7f05;
    box-sizing: border-box;
}


textarea {
    resize: vertical;
}

button {
    background-color: #4caf50;
    color: #070707;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

small {
    color: #080808;
    display: block;
    font-weight: bold;
}

footer{
    background-color: rgb(226, 165, 11);
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    
}

body{
    background-image: url(../Images/wallpaper.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}