h1,
h2 {
    font-family: 'Krona One', sans-serif;
    color: #ECE9D8;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 50px;

}

section {
    margin: 0 15%;
    margin-bottom: 50px;
}

section p {
    line-height: 1.5;
}

section ul li{
    margin-bottom: 5px;
}

section a {
    text-decoration: none;
    color: white;
    position: relative;
}

section a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 4px;
    background-color: white;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .4s ease-in-out;
}

section a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

section p:not(:first-of-type) {
    margin: 0 50px;
}

section ul {
    margin-left: 65px;
}