* {
    padding: 0;
    margin: 0;
    font-family: "poppins";
}

html, body {
    width: 100%;
    /* height: 100%; */
    background-color: #eefff4;
}
 
.navbar {
    height: 90px;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    top: 0;

}

.title-box {
    margin: 0 auto;
    height: 100%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title {
    font-size: 30px;
    letter-spacing: 1px;
    color: #454653;
    font-weight: bold;
}
.title-filler {
    width: 50px;
}

.main {
    max-width: 980px;
    margin: 110px auto 40px;
    padding: 10px;
    min-height: calc(100vh - 370px);
}

.sidebar {
    background-color: #ffffff;
    height: 100%;
    max-width: 500px;
    width: 50%;
    position: fixed;
    top: 90px;
    right: 0;
    overflow: auto;
}
.sidebar-icon {
    margin: 20px auto;
    display: block;
}
.s-button {
    margin: 20px;
    height: 80px;
    background-color: #cff1da;
    color: #454653;
    font-size: 24px;
    line-height: 80px;
    text-align: center;
    font-weight: bold;
}

.mask {
    position:fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(33, 33, 33, 0.7);
}
.top-ads {
    margin: 10px auto;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.top-ads p {
    font-size: 12px;
    color: #666666;
}




.hl-search-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 50px;
	max-width: 780px;
	height: 80px;
	background-color: #ffffff;
	border-radius: 10px;
	border: solid 1px #96b1cf;
}
.hl-search-box input {
    border: none;
    outline: medium;
    height: 80px;
    width: 100%;
    margin-right: 10px;
    font-size: 24px;
    color: #333333;
    font-weight: bold;
    letter-spacing: 1px;
}
.hl-search-box input[type=search]::-webkit-search-cancel-button{
    -webkit-appearance: none;
}
.hl-search-box img {
    margin: 10px;
}
.result:nth-child(n+8) {
    display: none;
}
.res-not {
    font-size: 36px;
    color: #333333;
    letter-spacing: 1px;
    text-align: center;
}





.button-box {
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.button-box.active .t-button{
    display: none;
}
.t-button {
    width: 21%;
    height: 60px;
    background-color: #ffffff;
    border-radius: 10px;
}
.t-button.active {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: #cff1da;
    display: block !important;
}

.t-button.active p {
    color: #454653;
}
.t-button p {
    font-size: 24px;
    color: #656565;
    text-align: center;
    line-height: 60px;
}

.content {
    margin-bottom: 60px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.c-img {
    width: 100%;
}
.c-type {
    height: 30px;
    width: 160px;
    background-color: #cff1da;
    border-radius: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #454653;
    text-align: center;
    margin: 30px 0;
}
.c-title {
    font-size: 30px;
    line-height: 1;
    color: #404040; 
    margin: 25px 0;
}
.c-author {
    font-size: 20px;
    color: #656565;
}
.c-author span{
    color: #3bc569;
}


.footer {
    height: 200px;
    background-color:#cff9dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: #666666;
}

.footer h4 {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 1px
}

.footer-button-box a {
    color: #999999;
    font-size: 20px;
    margin: 0 5px;
}
.policy-box a {
    color: #666666;
    font-size: 18px;
    margin: 0 5px;
}
.footer p {
    font-size: 18px;
}


.logo-title {
    width: 147px;
    height: 24px;
}
.logo-button {
    width: 48px;
    height: 48px;
    margin: 0 5px;
}

@media screen and (max-width: 767px) {
    .c-img {
        width: 336px;
        height: 224px;
        margin: 10px auto;
    }
}