@font-face {
    font-family: 'Biennale Reg';
    src: url('files/Biennale-Regular.otf') format('opentype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Biennale Med';
    src: url('files/Biennale-Medium.otf') format('opentype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Biennale Bold';
    src: url('files/Biennale-Bold.otf') format('opentype');
    font-style: normal;
    font-weight: normal;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Biennale Reg', sans-serif;
    font-size: 1.2em;
}

h2, h3 {
    font-family: 'Biennale Bold', sans-serif;
}

section {
    padding-top: 60px;
    padding-left: 25px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 60px;
    background: #2F302F;
    z-index: 1;
}

.header ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin-right: 10px;
}

.header ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: 'Biennale Med', sans-serif;
    font-size: 1.3em;
    margin: 5px;
    padding: 5px;
}

.header ul li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 6px;
    text-underline-offset: 0.2em;
    text-decoration-style: dashed;
}

.logo {
    width: 60px;
    height: 60px;
    background-image: url("img-body/therefpage-logo.svg");
    background-repeat: no-repeat;
    margin-left: 20px;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.logo:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: 500ms ease;
}


.box {
    display: inline-block;
    max-width: 320px;
    background: rgba(255, 99, 71, 0.7);
    padding: 10px;
    margin: 10px;
    vertical-align: top;
    word-wrap: break-word;
}

.button {
    padding: 5px;
    margin: 5px;
    background: #DC143C;
    color: #fff;
    text-decoration: none;
    display: block;
    text-align: center;
    border: 1px solid #FFFFFF;
    font-family: "Biennale Bold", sans-serif;
}

.button:hover {
    background: #111111;
    color: #FF00FF;
    border: 1px solid #FFFFFF;
}





/* AddToAny */
#my_centered_buttons {
    display: flex;
    justify-content: center;
}

.a2a_svg,
.a2a_count {
    border-radius: 50% !important;
}

/* end AddToAny */