@charset "UTF-8";

.home {
    background-color: #f6e5cc;
}
.fv {
    text-align: center;
}
.fv h2 {
    font-size: 36px;
    padding-top: 70px;
}
.top_img {
    margin-top: 40px;
    max-width: 670px;
    padding-bottom: 70px;
}
@media (max-width: 450px) {
    .fv h2{
        font-size: 25px;
    }
}

/* button */
.wbutton {
    width: 100%;
    padding-bottom: 120px;
}
.wbt_bg {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.wbutton a {
    text-decoration: none;
    color: #332618;
    line-height: 1.6;
}
.wbnb { 
    font-size: 24px;
}
.n_icon_img {
    max-width: 187px;
}
.b_icon_img {
    max-height: 184px;
}
.hn_text,
.hb_text {
    margin-left: 16px;
}


.home_netflix a,
.home_books a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 375px;
    position: relative;
    margin: 0 auto;
    padding: 20px;
    background-color: #fdf8b0;
    border-radius: 80px;
    transition: 0.3s;
}

.home_netflix a::before,
.home_books a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border: 2px solid #332618;
    border-radius: 80px;
    transition: 0.2s;
}

.home_netflix a:hover::before,
.home_books a:hover::before {
    top: 0;
    left: 0;
}
.home_netflix a:hover,
.home_books a:hover {
    background-color: #f5a81a;
}
@media (max-width: 1080px) {
    .wbt_bg {
        width: 180px;
    }
    .home_netflix a,
    .home_books a {
        min-width: 330px;
    }
    .wbnb { 
        font-size: 24px;
    }
    .n_icon_img {
        max-width: 129px;
    }
    .b_icon_img {
        max-height: 124px;
    }
}
@media (max-width: 770px) {
    .wbutton {
        padding-bottom: 70px;
    }
    .wbt_bg {
        width: 200px;
        display: block;
        margin: 0 ;
    }
    .home_netflix,
    .home_books {
        margin: 0 auto 30px;
    }
    .home_netflix a,
    .home_books a {
        min-width: 260px;
    }
}