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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 22px;
    line-height: 50px;
    color: gray;
    background-image: url(../background.jpg);
    background-repeat: no-repeat;
    background-size: cover;

}

header{
    width: 100%;
    height: 200px;
    background-color: aliceblue;
    padding: 20px;
    position:fixed;
}

nav ul li{
    display: inline-block;
    margin-right: 30px;
    font-size: 25px;
}
main, footer {
    padding: 50px;
}

main article p{
    max-width: 1800px;
}

main{
    background-color: ivory;
    padding-top: 250px;
}
footer{
    background-color: aliceblue;
}
.fancy-button {
    background-color: aliceblue;
    padding: 20px 35px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px rgba(46, 46, 49, 0.389);
    border: gray dotted;
    color: black;
    font-weight: bold;
}
.fancy-button:hover {
    background-color: lightblue;
    padding: 20px 35px;
    border-radius: 10px;
    color: slateblue;
}

/*Styling the Font*/

input[type=text],
input[type=password],
input[type=submit],
textarea{
    display: block;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    width: 260px;
}