* {
    margin: 0px;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

article {
    box-sizing: border-box;
    width: 60vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 검색바 */
.searchForm {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ADADAD;
    border-radius: 100px;
}

.searchForm .searchField {
    width: 100%;
    background-color: #FFFFFF;
    font-family: 'Pretendard-Regular';
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
}

.searchForm i {  
    transform: translateX(-20px);
    cursor: pointer;
    font-size: 2vw;
}

.searchField{
    width: 65%;
    height: 6vh;
    outline: 0px;
    background: #F7F7F7;
    border-radius: 40px;
    border-style: none;
}