@font-face {
    src: url(fonts/Inconsolata-Regular.ttf);
    font-family: inconsolata;
}

@font-face {
    src: url(fonts/Rakkas-Regular.ttf);
    font-family: rakkas;
}

html {
    scrollbar-color: rgb(50, 50, 50) rgb(150, 150, 150);
    scrollbar-width: thin;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(234, 234, 238);
}

p {

    font-size: 20px;
    font-family: inconsolata;
    text-align: left;
    color: rgb(50, 50, 50);
    text-decoration: none;
    line-height: 150%;
}

.nav_bar {
    white-space: nowrap;
    position: relative;
    margin-top: 2.8vh;
    margin-left: 1.4vw;
    margin-right: 1.4vw;
    line-height: 7vh;
    border: none;
    background: none;
    color: black;
    text-decoration: none;
}

.nav_bar:hover {
    color: rgb(90, 90, 90);
}

.nav_bar:active {
    color: rgb(70, 70, 70);
}

.header_locations {
    font-family: inconsolata;
    font-size: 22px;

}

.header_title {
    margin: 0;
    position: absolute;
    left: 45vw;

    margin-top: 5px;

    font-family: rakkas;
    font-size: 40px;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.nav_button_div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;

    margin-bottom: 20px;
    margin-top: 5px;

}

.nav_button_anchor {
    background-color: #000000;
    text-decoration: none;
    padding: 5px;
    padding-bottom: 1px;
    font-weight: bold;
    border-radius: 150vw;


    font-size: 20px;
    font-family: inconsolata;
    text-align: left;
    color: rgb(234, 234, 238);
    text-decoration: none;

}

.nav_button_anchor:hover {
    background-color: #303030;
}

.nav_button_anchor_flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;

    align-items: center;
}

.nav_button_anchor_flex_svg_wide {
    margin-left: 5px;
}

.nav_button_anchor_flex_text {
    flex: 1;

    margin-right: 10px;
    margin-bottom: 5px;
}