body {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    padding: 70px 50px;
    margin: 0;
    background-color: #FEE3EA;
    color: #5F80AF;
    flex-basis: auto;
    font-family: 'CircularStd';
}

h1, h2 {
    font-weight: 300;
}

svg {

}

@font-face {
    font-family: 'CircularStd';
    src: url('./circular-std-medium-500.ttf') format('truetype'),
}

.logo {
    width: 200px;
    height: fit-content;
}

.charavines {
    margin-top: 10px;
    margin-bottom: 30px;
}
.date {
    margin-top: 10px;
    margin-bottom: 3px;
}
.edition {
    margin-top: 0px;
    margin-bottom: 40px;
}

a {
    color: #5F80AF;
    font-family: 'CircularStd';
}

.linktoform {
    text-decoration: none;
    font-size: 1.3em
}

.linkcalendar {
    margin-top: 7px;
}

p {
    padding: 0;
}
.instructions {
    margin-top: 70px;
}
ul {
    margin: 8px;
}

/* Link */
.linktoform--bgBottomToTop {
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, color 0.2s ease;
}

.linktoform--bgBottomToTop::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 94%;
    left: 0;
    background-color: #5F80AF;
    transition: top 0.3s ease;
    z-index: -1;
}

.linktoform--bgBottomToTop:hover::after {
    top: 0;
}

.linktoform--bgBottomToTop:hover {
    color: #FEE3EA;
}
