:root {
    --primary-color: #fca31c;
}

body {
    margin:0;
    font-family: helvetica
}
h1 {
    font-size: max(6vw, 48px);

    text-align: center;
    font-weight: bold;
}  


h2 {
    font-size: max(4vw, 36px);
    text-align: center;
    font-weight: bold;
    padding: 10px;
    display: block;
    
}

h3 {
    font-size: max(2.5vw, 30px);
    font-weight: bold;

    text-align: center;
}

h4 {
    font-size: 20px;
    font-weight: normal;
    text-align:center;
}

h6 {
    font-size: 15px;
    font-weight: normal;
    text-align:left;
    margin: 5px;
}
p {
    text-align: center;
}

a {
    text-decoration: none;
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

img{
    display: flex;
}

figcaption{
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}

.highlight {
    padding: 10px;
    background-color: rgb(from var(--primary-color)r g b / .5);
    border-radius: 10px
}


div#menu_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
div#menu_bar {
    text-align:left;
}

div#menu_bar li{
    position: relative;
    left: 15px;
    display: inline;
    padding: 10px;
}

div#menu_bar a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 20px;
    margin-top: 15px;
    padding: 5px 5px 5px 5px;
    color: black;

}

div#menu_bar a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: all 0.15s ease-in-out 0s;
}

div#menu_bar a:hover:before , div#menu_bar a.active:before {
    visibility: visible;
    transform: scaleX(1);
}
div#menu_bar_r {
    text-align:left;
}

div#menu_bar_r li{
    position: relative;
    right: 15px;
    display: inline;
    padding: 10px;
}

div#menu_bar_r a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-size: 20px;
    margin-top: 15px;
    padding: 5px 5px 5px 5px;
    color: black;

}

div#menu_bar_r a:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: all 0.15s ease-in-out 0s;
}

div#menu_bar_r a:hover:before , div#menu_bar_r a.active:before {
    visibility: visible;
    transform: scaleX(1);
}

hr.thick  {
    height: 5px;
    background-color: black;
    border: none;
    margin-top: 15px;
    opacity: 1
}


