/* 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: rgb(250, 0, 196);
    background-color: rgb(244, 173, 193);
}

header {
    width: 100%;
    height: 187px;
    background-color: rgb(245, 217, 244); 
    padding: 20px;
    position: fixed;
}

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

}
main,footer {
    padding: 20px;
}
main article p {
  /* max width: 60ch; */
  max-width: 1000px;
}
footer {
    background-color: antiquewhite;
    background-image: url(../img/pretty.avif);
    background-size: cover;
    background-repeat: no-repeat;
}
.fancy-button {
    background-color: rgb(234, 204, 228);
    padding: 20px 35px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px;
    border: 2px solid 

}

/*Styling the Forms */
input[type=text],
input[type=password],
input[type=submit],
textarea {
    display: block;
    padding: 10px;
    border: 1px solid pink;
    margin-bottom: 16px;
    border-radius: 10px;
    width: 260px;
}

