/* 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: 35px;
    color: rgb(170, 209, 244);
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
} 

header{
    width: 100%;
    height: 200px;
    background-size: 100%;
    background-color: beige;
    padding: 20px;
}

header div{
    width: 250px;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
}

nav a{
    color: rgb(170, 209, 244);
}

nav{
    position: absolute;
    right: -10px;
    top: 160px;

}

#banner{
    background-image: url("../img/cafe.jpg");
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center top;
    text-align: center;
}

main, footer{
    padding: 20px;
}
main article p{
    /* max-width: 60ch; */
    max-width: 800px;
}
main{
    background-color: rgb(139, 150, 250);
    padding-top: 197px;
}
footer {
    background-color: rgb(181, 135, 233);
}

.fancy-button {
    background-color: bisque;
    padding: 20px 35px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px;
    border: 2px double purple;
    color: black;
    font-weight: bold;
}

.fancy-button:hover {
    background-color: blanchedalmond;
    color: rgb(221, 66, 244);
    rotate: 2deg;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/*Styling the Forms*/

#logo{

    position: relative;
    top: 45px;
    left: 430px;
}

#title-box{
    position: relative;
    top: -30px;
    left: 10px;
}

h1{
    /*Gabby's Web Design*/
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    line-height: 30px;
    color: rgb(128, 181, 239);

}

button{
    border-radius: 20px;
    padding: 10px;
    background-color: white;
    margin-top: 27vh;
    border: none;
}

main{
    text-align: center;
}

footer{
    text-align: center;
}

footer img{
    display: inline-block;
    margin-right: 20px;
}