* {
    box-sizing: border-box;
}
body{
    font-family: 'Bebas Neue', cursive;
    font-weight: 300;

}

main { 
    width: 90%;
    margin: auto;
    margin-top: 25px;
}

p { 
    margin: 15px 0 15px 0;
}

h1 { 
    font-size: 30px;
    margin-bottom: 15px;
}

dl{ 
    padding: 15px;
}

dl dt { 
    text-transform: uppercase;
    margin-bottom: 5px;
}

dl dd { 
    margin-bottom: 10px;
    margin-left: 15px;
}
header { 
    margin-top: 20px;
}

.main-nav { 
    background-color: #f7ede2;
}
.main-nav ul{
    display: flex;
    justify-content: center;

}

.main-nav ul li {
    padding: 15px;
    list-style-type:none;
}

.main-nav ul li:hover { 
    background-color: ;
    border-bottom: white 1px solid;
}

.main-nav ul li a { 
    text-decoration: none;
    color: #f28482
    ;
}

ol { 
    padding: 15px;
    list-style-type: disc;
}

#top { 
    display: flex;
    flex-direction: column;
    align-items: center;
}

a{ 
    color: #f28482;
}

.border { 
    display: grid;
    grid-template-columns: 70% 10% 1fr;
    width: 70%;
    margin: auto;
}

.placeholder { 
    background-color: #84a59d;
    grid-row: 1;
    grid-column: 1/ span 2;

}

.quote { 
    font-style: italic; 
    line-height: 20px;
    border: 2px #f5cac3 dotted;
    margin: 0;
    grid-row: 1;
    grid-column: 1 / span2;
}

footer{ 
    background-color: #f5cac3;
    color: #f28482;
    text-align: center;
}