@import url('https://fonts.googleapis.com/css2?family=Gorditas&family=Poppins&display=swap');

::-webkit-scrollbar {
width: 10px;
background: white;
}
::-webkit-scrollbar-button {
width: 0px;
height:0px;
}
::-webkit-scrollbar-track {
border: 0px;
}
::-webkit-scrollbar-thumb {
background: Thistle;
}
::-webkit-scrollbar-thumb:hover {
background: MediumOrchid;
}

body{
background: white;
font-family: 'Poppins', sans-serif;
font-size: 18px;
line-height: 26px;
color: black;
}

h1,h2,h3,h4,h5,h6{
font-family: 'Gorditas', cursive;
margin: 0;
font-weight: normal;
color: black;
text-align:center;
}

h1{
font-size: 40px;
line-height: 45px;
text-decoration: underline wavy Thistle;
}

h2{
font-size: 30px;
line-height: 35px;
}

h3{
font-size: 20px;
line-height: 25px;
}

h4, h5, h6{
font-size: 17px;
line-height: 27px;
}

a{
font-weight: bold;
text-decoration: none;
transition: all .5s ease-in-out;
color: Thistle;
margin-right: 10px;
}

a:hover{
color: RoyalBlue;
border-bottom: 1px dashed MediumOrchid;
}