main {
    background-color: #2c0e37;
    padding-bottom: 50px;
}
#title{
    height: 95vh;
    width: auto;
}

nav {
    top: 70px;
    position: absolute;
    width: 100%;
    text-align: center;
}
nav ul {
    list-style: none;
}
nav .button{
    display: inline-block;
    margin-right: 80px;
}

.button {
    background-color: #fffaad;
    border: 1px solid black;
    font-size: 22px;
    font-weight: 300;
    line-height: 2;
    box-shadow: 5px 5px #a9d2d5;
    padding: 5px 20px 5px 20px;
}

.button:hover{
    background-color: #df90c7;
    box-shadow: none;
    transition: 0.4s ease-in-out;
}

#intro-text {
    padding-top: 25vh;
    padding-left: 5vw;
}

#intro-text h1{
    font-family: "Roboto", sans-serif;
    color: #fff782;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 0.3em;
    text-shadow: 5px 2px #df90c7, 8px 4px #f33fbd;
}

#intro-text h2{
    font-family: "Pacifico", cursive;
    color: #a9d2d5;
    font-size: 2rem;
}

#intro-text p{
    font-size: 1.5em;
    color: #c6f2f5;
    letter-spacing: 1px;
}

/* #circle {
    height: 10vh;
    width: 10vh;
    background: #df90c7;
    border-radius: 100px;
    margin-left: 70vw;
    margin-bottom: 500px;

} */

#about {
    background-color: #df90c7;
    width: 90vw;
    height: 80vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}


#about div {
    border: 3px solid #2c0e37;
    box-shadow: 5px 5px #fff782;
    height: 80%;
    width: 25%;
}

#about div h1{
    text-align: center;
    font-family: "Pacifico", cursive;
    color: #fff782;
    font-weight: bolder;
    font-size: 1.6rem;
}

#about div img {
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#about div img:hover {
    border: 5px solid #fff782;
    transition: 0.2s ease-in;
}

#about div p{
    font-family: "Roboto", sans-serif;
    text-align: center;
    margin-left: 2rem;
    font-size: 1.5rem;
}

#recipes {
    background-color: #a9d2d5;
    height: auto;
    width: 90vw;
    margin: 0 auto;
}

#recipes h1{
    font-family: Roboto, sans-serif;
    color: #fff782;
    text-align: center;
    font-weight: 900;
    padding-top: 3%;
    font-size: 3rem;
    letter-spacing: 0.3em;
    text-shadow: 2px 2px #a9d2d5, 8px 4px #2c0e37;
}

#wrapper{
    display: grid;
    grid-template-columns: repeat(3, 33%);
    grid-column-gap: 2em;
    grid-row-gap: 3em;
    grid-auto-rows: minmax(50vh, auto);
    max-width: 80%;
    margin: 0 auto;
}

.recipe-card {
    /* border: 3px solid black; */
    background-color: #daa89b;
    box-shadow: 8px 8px #fffaad;
    border-radius: 50%;
}
.recipe-card:hover {
    position: relative;
    bottom: 10px;
    right: 10px;
    box-shadow: 18px 8px #fffaad;
    transition: 0.4s ease-in-out;
}

.recipe-card h2{
    font-family: "Pacifico", cursive;
    color: #4a2948;
    text-align: center;
}

.recipe-card img{
    margin: auto;
    display: block;
    border-radius: 50%;
}

#gradient{
    background: linear-gradient(180deg, #a9d2d5, #2c0e37);
    width: 90vw;
    margin: auto;
    height: 300px;
    display: block;
    content: "";
    margin-bottom: 0;
}

#quotes {
    background-color: #fffaad;
    /* height: auto; */
    width: 90vw;
    margin: 0 auto;
    padding-bottom: 2vh;
}

#quotes h1{
    font-family: Roboto, sans-serif;
    color: #2c0e37;
    text-align: center;
    font-weight: 900;
    padding-top: 3%;
    font-size: 3rem;
    letter-spacing: 0.3em;
    text-shadow: 2px 2px #a9d2d5;
}

#quotes p{
    text-align: center;
    font-family: 'Roboto Mono', 'Arial';
    font-size: 1.3rem;
}

footer {
    font-size: 18px;
    text-align:center;
    border: 1px solid #fff782;
}
