.main {
    position: relative;
    width: 100%;
    height: 80vh;
    background-color: var(--main-color);
    margin-top: 1px;
}

.notfound {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notfound-text {
    font-size: 100px;
    color: #fff;
}

.notfound-sub {
    font-size: 20px;
    color: #fff;
    padding-bottom: 20px;
    text-align: center;
}

.notfound-search {
    display: flex;
    align-items: center;
}

.notfound-search_input{
    width: 600px;
    line-height: 60px;
    font-size: 20px;
    outline: none;
    border: none;
    padding-left: 1vmin;
    box-sizing: border-box;
    color: var(--main-color);

}

.notfound-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    cursor: pointer;
}

.notfound-search-btn img {
    width: 30%;
    height: 30%;
}

@media screen and (max-width: 480px) {
    .notfound {
        top: 0;
        transform: translate(-50%, 40%);
    }

    .notfound-text {
        font-size: 20vmin;
    }

    .notfound-sub {
        font-size: 3vmin;
    }

    .notfound-search_input {
        width: 80vmin;
        height: 10vmin;
        font-size: 4vmin;
        padding-left: 3vmin;
    }
    
    .notfound-search-btn {
        width: 10vmin;
        height: 10vmin;
    }

    .notfound-search-btn img {
        width: 60%;
        height: 60%;
    }
}