/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 22px;
    line-height: 44px;
    color: brown;
    background-color: rgb(253, 246, 232);
}
header {
    width: 100%;
    height: 90px;
    background-color: hsl(36, 75%, 87%);
    padding: 20px;
    position: fixed;

}
nav ul li {
    display: inline-block ;
    margin-right: 20px;
    font-size: 12px;

}
main, footer {
    padding: 20px;
}
main article p {
    /* max-width: 60ch; */
    max-width: 1000px;
}
main {
    background-color: rgb(253, 246, 232);
    padding-top: 190px;
}
footer { 
    background-color:  hsl(36, 75%, 87%);
    background-image: url(../img/photo-1725429967564-cebd8d7a98d5.avif);
    background-repeat: no-repeat;
    background-size: cover;
}

.fancy-button {
    background-color: rgb(212, 129, 74);
    padding: 20px 35px;
    border-radius: 10px;
    
    box-shadow: 2px 4px 10px;
    border: 2px solid brown;
    color: black;
    font-weight: bold;
    
}
.fancy-button:hover {
    background-color: rgb(245, 96, 37);
    color: rgb(243, 217, 201);
    rotate: 2deg;
}

/* Styling the Forms */

input[type=text],
input[type=password],
input[type=submit],
textarea {
display: block;
padding: 10px;
border: 1px solid rgb(227, 84, 17);
margin-bottom: 16px;
border-radius: 10px;
width: 260px;
}


