/*css*/
@font-face {
    font-family:"OkineBlack";
    src: url(/fonts/MADEOkineSansPERSONALUSE-Black.otf);
}
@font-face {
    font-family:"Okine";
    src: url(/fonts/MADEOkineSansPERSONALUSE-Regular.otf);
}
@font-face {
    font-family:"Codec";
    src: url(/fonts/Codec-Cold-ExtraBold-trial.ttf);
}
@font-face {
    font-family:"Codeclight";
    src: url(/fonts/Codec-Cold-Light-trial.ttf);
}
body{ 
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    margin: 0;
}
h1{
    font-family: "Codec";
    font-size: 32px;
    color:black;
    margin:0px;
}
a{
    text-decoration:none;
    font-size: 22px;
    font-family: "Codec";
    font-weight: bolder;
    color:rgb(121, 121, 121);
    margin:0px;
}
.header{
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    padding:25px 55px;
    position:sticky;
    max-width: 100vw;
    top:0;
    z-index: 999;
}
.left{
    display: flex;
    align-items: center;
    gap:15px;
}
.right{
    display:flex;
    align-items: center;
    gap: 55px;
}
.footer{
    align-self:center;
    font-family: "Okine";
    color:grey;
    font-size:14px;
    padding:20px;
    max-height: 100vw;
    bottom:0;
    z-index: -999;
}
.dropbtn{
    background-color: #ffffff;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus{
    background-color: #5ebeff;
}
.dropdown{
    position: relative;
    display: none;
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    right:0px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.dropdown-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.show {display:block;}

.bars{
    pointer-events: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: none; 
}
@media screen and (max-width: 855px) {
.header {
    max-width: 100vw;
    justify-content: center;
    align-items: center;
}
.link{
    display:none;
}
.dropdown{
    display:inline-block;
}
.bars{
    display:block;
}
}


@media screen and (max-width: 395px) {
h1{
    font-family: "Codec";
    font-size: 28px;
}
}
