@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0px;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: auto;
}

body::-webkit-scrollbar {
    display: none;
}

article {
    box-sizing: border-box;
    width: 60vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#search_bar {
    margin-top: 10%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

#search_bar .image {
    width: 10vw;
    width: 10vh;
    margin-right: 1vw;
}

#search_bar .image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

#search_bar form input,
#search_bar form button {
    outline: none;
    background: none;
    border: none;
}

#search_bar form input {
    width: 35vw;
    height: 5vh;
    background-color: #FFFFFF;
    font-family: 'Pretendard-Regular';
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    border: 1.5px solid #ADADAD;
    border-radius: 100px;
}

#search_bar form button i {
    cursor: pointer;
    font-size: 2vw;
    transform: translateX(-4vw);
}

/* 검색 결과 */

#result_section {
    margin-top: 10%;
    display: flex;
    width: 60vw;
    box-sizing: content-box;
    flex-direction: column;
    align-items: center;
}

#result_section .result{
    width: 55vw;
    height: 7vh;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2vh;
}

#result_section .result .image{
    width: 6vh;
    height: 6vh;
}

#result_section .result .image img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

#result_section .result .icons {
    width: 10vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#result_section .result .icons i {
    font-size: 1.4vw;
}

#result_section .result .icons button {
    outline: none;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1vw;
    cursor: pointer;
}

.play,
.pause {
    margin-right: 2vw;
    cursor: pointer;
}

#result_section .result span {
    width: 8vw;
    font-family: 'Pretendard-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 1vw;
    margin: 0% 10%;
}

#result_section .result a {
    margin-left: 5%;
}
