
@font-face {
    font-family:"LibreBarcode";
    src: url("../fonts/LibreBarcode128Text-Regular.ttf") format("truetype");
}
@font-face {
    font-family:"Libre Franklin";
    font-weight: 400;
    src: url("../fonts/LibreFranklin-Regular.ttf") format("truetype");
}
@font-face {
    font-family:"Libre Franklin";
    font-weight: 600;
    src: url("../fonts/LibreFranklin-SemiBold.ttf") format("truetype");
}


*{
    margin: 0;
    padding: 0;
    text-decoration: 0;
}

::selection{
    background: #E45826;
}

body{
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #E6D5B8;
}

.NavbarHolder{
    display: flex;
    position: fixed;
    top: 10px;
    width: 65%;
    height: 4.875vw;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 99 !important;
}

.Navbar{
    display: flex;
    padding: 10px 0px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    background: rgba(27, 23, 23, 0.90);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.nbLeft{
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
}
.spacer{
    width: 2px;
    height: 29px;
    background: #E6D5B8;
}
a{
    color: #E6D5B8;
    text-align: center;
    font-family: Libre Franklin;
    font-size: 1.875vw;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: color 500ms ease-in-out;
}

a:hover{
    color: #E45826;
}
.nbRight{
    display: flex;
    padding: 10px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
}

.holder{
    margin-top: 5.875vw;
    display: flex;
    width: 65%;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.pic{
    display: flex;
    width: 30%;
    padding: 10px 0px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
    flex: 1 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    
}

/* .pic:hover{
    box-shadow: 4px 4px 4px 0px rgba(255, 102, 0, 0.4);
} */

h1{
    align-self: stretch;
    color: #E6D5B8;
    font-family: LibreBarcode;
    font-size: 8vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-left: -1px;
}

.quoteArea{
    padding: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: stretch;
    position: relative;
}

.quoteImg{
    display: flex;
    width: 40vw;
    height: 25vw;
    align-items: flex-end;
    gap: 10px;
    background: url('images/berger.png');
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);

}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px;
    margin-bottom: 0px;
    padding: 5px 10px;
    border: 5px solid rgba(27, 23, 23, 0.90);
    background: rgba(27, 23, 23, 0.90);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 500ms ease-in-out;
}

.button:hover{
    border: 5px solid #E45826;
    background: #FFF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    
}

.quote{
    display: flex;
    padding: 10px;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    right: 31vw;
    top: 2vw;
    background: rgba(27, 23, 23, 0.90);
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.75);
}

p{
    color: black;
    text-align: left;
    font-family: Libre Franklin;
    font-size: 1.575vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}



.largePanel{
    width: 100%;
    height: 40vw;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.bodyText{
    column-count: 3;
    column-gap: 10px;
    column-rule: 2px dashed rgba(0, 0, 0, 0.25);
}
.bodyText a{
    color: #000; 
    text-decoration: underline;
}
.bodyText a:hover{
    color: #E45826; 
    text-decoration: underline;
}