* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    background-color: #332842;
}

a {
    color: #e0e1dd;
    text-decoration: none;
}

a:visited {
    color: #f29455;
}

.main {
    width: 70vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-weight: 400;
    font-size: 2.6875rem;
    color: #f29455;
}

.lighthouse {
    width: 20rem;
    border-radius: 30%;
}

.head {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier Prime', monospace;
    gap: 1.25rem;
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 4.0625rem;
    color: #e0e1dd;
}

.line {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    border: 0.125rem solid #e0e1dd;
}

.content-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content {
    width: 83.75rem;
    display: flex;
    padding: 1.875rem 0rem;
    gap: 2.1875rem;
    border-bottom: 0.125rem solid #f29455;
}

.content-img {
    display: flex;
    width: 18.75rem;
    height: 12.5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 0.0938rem solid #e0e1dd;
}

.feed {
    width: 62.6875rem;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    padding: 1.25rem 0rem;
}

.feed-header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Courier Prime', monospace;
    font-weight: 500;
    font-size: 1.8125rem;
    color: #e0e1dd;
}

.feed-meta {
    width: 62.6875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Courier Prime', monospace;
    font-weight: 500;
    font-size: 1.375rem;
    color: #e0e1dd;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 65px 0px;
    font-family: 'Courier Prime', monospace;
    font-size: 22px;
    color: #f29455;
}



/* MEDIA QUERIES */
/* media queries for screen sizes less than 2560px */
@media only screen and (max-width:2560px) {
    .feed-meta {
        width: 99%;
    }
}


/* media queries for screen sizes less than 1440px */
@media only screen and (max-width:1440px) {
    html {
        font-size: 75%;
    }
}


/* media queries for screen sizes less than 1024px */
@media only screen and (max-width:1024px) {
    html {
        font-size: 54%;
    }
}


/* media queries for screen sizes less than 768px */
@media only screen and (max-width:768px) {
    html {
        font-size: 40%;
    }
}


/* media queries for screen sizes less than 425px */
@media only screen and (max-width:425px) {
    html {
        font-size: 43%;
    }

    .main {
        width: 80vw;
    }

    .title {
        flex-wrap: wrap-reverse;
        justify-content: center;
        font-size: 21.5px;
    }

    .lighthouse {
        width: 180px;
    }

    .content {
        width: 80vw;
    }

    .feed {
        width: 88%;
    }

    .feed-meta {
        width: 90%;
    }
}


/* media queries for screen sizes less than 375px */
@media only screen and (max-width:375px) {
    html {
        font-size: 45%;
    }

    .main {
        width: 70vw;
    }

    .content {
        justify-content: center;
        flex-wrap: wrap;
    }

    .img {
        display: flex;
        justify-content: center;
    }

    .content-img {
        width: 85%;
        height: 100%;
    }

    .feed {
        padding: 0;
    }

    .feed-meta {
        width: 100%;
    }
}