#content {
    margin-top: 120px;
}

@media screen and (max-width: 1200px) {
    #content {
        margin-top: 50px;
    }
}

@media screen and (max-width: 960px) {
    #content {
        margin-top: 160px;
    }
}

@media screen and (max-width: 600px) {
    #content {
        margin-top: 0;
        padding-top: 100px;
    }
}

#content .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 120px;
}
@media screen and (max-width: 1200px) {
    #content .container {
        width: 960px;
        column-gap: 50px;
    }
}
@media screen and (max-width: 960px) {
    #content .container {
        width: 600px;
    }
}
@media screen and (max-width: 600px) {
    #content .container {
        width: 300px;
    }
}

.header {
    margin-bottom: 10px;
}

#content .header {
    width: 100%;
    font-size: 72px;
    font-weight: 500;
    padding-bottom: 20px;
    border: 0;
}
@media screen and (max-width: 960px) {
    #content .header {
        width: auto;
        font-size: 32px;
        display: inline-block;
    }
}

@media screen and (max-width: 600px) {
    #content .header {
        font-size: 24px;
    }
}


form {
    margin-bottom: 50px;
}
#top .header, #right .header, #bottom .header {
    width: 100%;
    font-size: 32px;
    text-decoration: none;
    text-transform: none;
    color: black;
    padding: 0;
}
@media screen and (max-width: 600px) {
    #top .header, #right .header, #bottom .header {
        font-size: 24px;
    }
}

#top .header {
    width: auto;
}

#top, .container>form, #top form {
    display: none;
}
@media screen and (max-width: 960px) {
    #top, .container>form {
        width:100%;
        display: inline-block;
    }
    .container>form {
        width:auto;
    }
}
@media screen and (max-width: 600px) {
    .container>form {
        display: none;
    }
    #top form {
        display: inline-block;
    }
}

form input {
    background-color: white;
    width:100%;
    height: 70px;
    border: 1px solid black;
    padding: 0 50px 0 10px;
    line-height: 70px;
    font-size: 24px;
}
@media screen and (max-width: 600px) {
    form input {
        background-color: white;
        width:200px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    } 
}

form button {
    margin-left: -50px;
    display: inline-block;
    background-color: transparent;
    width: auto;
    height: auto;
}
form button:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}
@media screen and (max-width: 600px) {
    form button {
        margin-left: -45px;
    }
    form button img {
        width:20px;
    } 
}

.sm {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

@media screen and (max-width: 960px) {
    .sm {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 600px) {
    .sm {
        flex-wrap: wrap;
        justify-content: space-around;
        column-gap: 50px;
    }
    .sm .header {
        font-size: 18px !important;
    }
}

#left {
    width: 700px;
}

@media screen and (max-width: 1200px) {
    #left {
        width: 640px;
    }
}

@media screen and (max-width: 960px) {
    #left {
        width: 600px;
    }
}

@media screen and (max-width: 600px) {
    #left {
        width: 300px;
    }
    #feed .header {
        padding: 0;
        margin: 0;
        margin-top: 20px;
    }
}

#left .cards {
    width: 100%;
}
@media screen and (max-width: 600px) {
    #left .cards {
        margin: 0;
    }
}

#left .card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid black;
    padding: 5px;
    border-radius: 0;
    cursor: auto;
}

#left .card>img, #left .card>video {
    width: auto;
    height: auto;
}

#left .card:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

#left .card>* {
    padding-top: 20px;
}

#left .card .date {
    font-weight: 300;
    font-size: 24px;
}
@media screen and (max-width: 600px) {
    #left .card .date {
        font-size: 18px;
    }
}

#left .card .title {
    height: auto;
    font-weight: 400;
    font-size: 32px;
}

#left .card .body {
    font-weight: 300;
    font-size: 20px;
}
@media screen and (max-width: 600px) {
    #left .card .body {
        font-size: 16px;
    }
}

#left .card .body span.more {
    cursor: pointer;
}

#left .card .tags {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 5px;
    margin-top: 0;
}

#left .card .tags * {
    cursor: pointer;
}

#left .card .tags *:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

#left .card .tags *:before {
    content: '#';
}

#left button {
    display: block;
    margin: 50px auto;
}




#right {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 100px;
    max-width: 350px;
}

@media screen and (max-width: 1200px) {
    #right {
        max-width: 270px;
        padding-left: 2px;
    }
}

@media screen and (max-width: 960px) {
    #right {
        display: none;
    }
}



.tags {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.tags span {
    line-height: 1;
    cursor: pointer;
}

.tags span:before {
    content: '#';
    text-transform: capitalize;
}

.tags span:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.pinned .cards {
    flex-direction: row;
    margin: 0;
}

.pinned .card {
    flex-direction: row;
    height: auto;
    margin: 0;
    column-gap: 20px;
}

.pinned .card img, .pinned .card video, .pinned .card video {
    height: 80px;
    width: 100px;
}

.pinned .card * {
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.pinned .card div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pinned .card div span {
    font-weight: 300;
}

#right #hot {
    margin-top: 100px;
}

@media screen and (max-width: 1200px) {
    #right .cards>.card .properties {
        padding-right: 0;
    }
}

#bottom {
    display: none;
}
@media screen and (max-width: 960px) {
    #bottom {
        display: block;
    }
}