@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=League+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pompiere&display=swap');
body{
background-color: #BAD797;
color: #670626;
}

h1{
font-family:'League Script', serif;
text-align: center;
font-size: 50px;
}
h2{
font-family:'Pompiere', serif;
text-align: center;
margin-top: -40px;
font-weight: bold;
}
h3{
font-family: 'League Script', serif;
font-size: 32px;
margin-left: 30px;
margin-bottom: -10px;
}
li{
list-style-type:none;
padding-left: 20px;
background-image: url("../../Downloads/Adobe Express - file.png");
background-repeat: no-repeat;
background-position: left center;
background-size: 15px;
margin-bottom: 10px;
font-family: 'Pompiere', serif;
font-size: 18px;
color: #670626;
position: relative;
}
nav a:link{
text-decoration: none;
}
a::before{
content:'';
position: absolute;
width: 50%;
height: 3px;
border-radius: 2px;
background-color:#670626;
bottom: 0;
left: 0;
transform-origin: right;
transform: scaleX(0);
transition: transform .3s ease-in-out;
margin-top: 20px;
}
a:hover::before{
transform-origin:left;
transform: scaleX(1);
}


