@charset "utf-8";
/* 
    press start 2p 폰트 적용을 위해 html에 아래 link 적용 필수
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
*/
.press-start-2p-regular {
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
}
header{
    width: 100vw;
    height: 80px;
    background: rgba(255,255,255,0.7);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
}
header ul{
    width: 63%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-family: "Press Start 2P";
    font-size: 18px;
    line-height: 80px;
}
footer {
    width: 100%; height: 300px;
    padding: 0 100px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .f_left .f_logo {
    font-family: "Press Start 2P", system-ui;
    font-size: 30px;
    color: #fff;
    -webkit-text-stroke: 1px #090909;
    text-shadow: 3px 3px 0 #090909;
    margin-bottom: 10px;
}

footer .f_left .f_tagline {
    font-size: 17px;
    margin-bottom: 30px;
}

footer .f_left .copyright {
    font-size: 15px;
    color: #bbb;
}

footer .f_right {
    display: flex;
    gap: 25px;
    align-items: center;
}

footer .f_right .teamName {
    font-family: "Press Start 2P", system-ui;
    font-size: 20px;
    color: #fff;
    -webkit-text-stroke: 1px #090909;
    text-shadow: 2px 2px 0 #090909;
}

footer .f_right .members {
    display: flex;
    gap: 40px;
    border-left: 1px solid #bbb;
    padding-left: 25px;
}

footer .f_right .members ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .f_right .members .name {
    font-size: 24px;
}

footer .f_right .members .link img {
    width: 22px; height: 22px;
    display: inline-block;
    margin-right: 7px;
}