
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "IBM Plex Sans KR", sans-serif;
  font-weight: 400;
  font-style: normal;
}

header {
    position: relative;
    flex: 1;
}

.bg-img-container {
    background-color: #000000;
}

.bg-img {
    display: block;
    width: 100%;
    object-fit: cover;
    opacity: 0.8;
    padding: 0;
    margin: 0;
    z-index: 0;
}

nav {
    display: flex;
    justify-content:space-between;
    padding: 0 15px;
    height: 100px;
    cursor: pointer;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .5);
    transition: all .35s;
}
nav:hover {
    background-color: rgba(34, 34, 34, 0.3);
    
}

.logo {
    margin: auto;
    color: rgb(238, 142, 174);
    font-size: 20pt;
    font-weight: 700;
}

.menu {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.up {
    width: 160px;
}

.up p {
    font-size: 18pt;
    text-align: center;
    line-height: 100px;
}
.up:hover p {
    color: white;
}

.down {
    background-color: rgba(34, 34, 34, 0.3);
    display: none;
}

.down > li {
    list-style: none;
    font-size: 14pt;
    height: 30px;
    text-align: center;
    cursor: pointer;
}

.down > li:hover {
    color: white;
}

.search-box {
    margin: auto;
    height: 40px;
    width: 300px;
    background-color: white;
    border-radius: 40px;
    padding: 10px;
    border: 1px solid #f9deec;
    display: flex;
    justify-content: center;
}

.search-txt {
    border: none;
    background-color: none;
    outline: none;
    padding: 0;
    color: #797979;
    font-size: 16px;
    line-height: 40px;
    width: 200px;
}

.search-btn {
    color: #f9deec;
    width: 40px;
    height: 100%;
    border-radius: 50%;
    background: white;
    border: none;
    font-size: 16px;
}

footer {
    background-color: #333333;
    display: flex;
    justify-content: space-between;
    padding: 40px 30px;
    color: #a0a0a0;
}

.info {
    display: flex;
    gap: 30px;
    
}