
@font-face {
  font-family: 'Raleway-bold';
  src: url('/font/Raleway-Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@media (min-width:801px){
    #m-h{
        display: none;
    }
}
@media (max-width:800px){
    #pc-h{
        display: none;
    }
}
header{
    z-index: 10000;
    background-color: var(--col-bg);
    height:10vh;
    border-bottom: solid #b1b1b1 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 0px;
    box-sizing: border-box;
    position: fixed;
    width: 100vw;
}
header img{
    height: 9vh;
}
header svg{
    height:7vh;
    cursor: pointer;
}
#pc-h{
    padding-left: 10%;
    padding-right: 10%;
}
#pc-nav{
    display:flex;
    gap: 24px;
}
header a{
   font-family: "Raleway-bold";
   transition:all 0.2s ease-in-out;
}
header a:hover{
    transform:translateY( 2px)
}
#m-h{
    padding-left: 5%;
    padding-right: 5%;
}
nav#m-nav{
    z-index: 1000;
    height: calc(100vh - 10vh - 1px);
    width: 100vw;
    position:fixed;
    left: 0px;
    bottom: 0px;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    align-items: end;
    padding: 48px;
    box-sizing: border-box;
}

footer{
    background-color: var(--col-txt);
    display: flex;
    padding: 24px 5%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-top: 24px;
}
footer *{
    color:var(--col-bg);
}
footer img{
    width: 72px;
}
@media (min-width:800px) {
    footer{
        flex-direction: row;
        padding: 24px 10%;
        width: 100%;
    }
}
