* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    background: #fafafa;
    color: aqua;
}

h4 {
    color: #111111;
    font-family: countach;
    font-weight: 500;
    letter-spacing: .1rem;
    text-transform: uppercase;
    font-style: italic;
    color: fuchsia;
    margin-bottom: .5rem;
    font-size: 1.5rem;
}

.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.homewrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.homewrapper img {
    width: 100%;
    margin-bottom: .25rem;
    aspect-ratio: 3/2;
    object-fit: cover;

}

.homeback {
    background-color: #111111;
}

.headerback {
    margin: auto;
    background-color: #111111;
    position: sticky;
    top: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    padding: 1.5rem 2rem;
    margin: 0 auto 2rem auto;
}

.logo {
    width: 200px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    font-family: 'work-sans', sans-serif;
    font-style: normal;
    font-weight: 400;
}

nav a:hover {
    border-bottom: 1px solid white;
}

.submit {
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    border: 1px solid lime;
}

.submit:hover {
    border-bottom: 1px solid lime;
    background-color: lime;
    color: black;
}



.features {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}


.mainfeature {
    text-decoration: none;
}

.mainfeature img {
    width: 100%;
    border: 1px solid fuchsia;
    margin-bottom: 1rem;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.mainfeature h1 {
    color: white;
    font-family: "countach", sans-serif;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    padding-left: 1rem;
    border-left: 4px solid fuchsia;
    font-size: 5rem;
    line-height: .9;
    letter-spacing: .1rem;
    margin-bottom: .5rem;
}


.ftbyline {
    color: darkgray;
    font-family: 'work-sans';
    font-weight: 400;
    font-size: .9rem;
    margin-left: 1rem;
}

.authorsname {
    color: #00bbbb;
}

h2 {
    font-family: 'work-sans';
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: .25rem;
}

.subfeature {
    margin-bottom: 2rem;
    display: block;
}

.subfeature a {
    text-decoration: none;
}


.subftbyline {
    color: darkgray;
    font-family: 'work-sans';
    font-weight: 400;
    font-size: .9rem;
}

.homegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.homegrid a {
    text-decoration: none;
}

.homebreak {
    margin: 4rem 0;
    color: gray;
}



.article {
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 3rem;
    gap: 4rem;

}

.article h1 {
    font-family: 'countach', 'work-sans';
    font-weight: 400;
    font-style: italic;
    font-size: 3rem;
    color: #111111;
    margin-bottom: 2rem;
    line-height: 1;
}

.articlehero {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1rem;
}

.article img {
    max-width: 100%;
}

.articleauthor {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.articleauthor a {
    font-family: 'work-sans', sans-serif;
    font-weight: 600;
    color: #00bbbb;
    font-size: 1.25rem;
}

.articleauthor div p {
    font-family: 'work-sans', sans-serif;
    color: gray;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 400;
}

.articleauthorphoto {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin-right: 1rem;
}

.article p {
    font-family: "pt-serif-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 1rem;
}

.footerback {
    background-color: #111111;
    border-top: 1px solid #f2f2f2;
    margin-top: 4rem;
}

footer {
    font-family: monospace, sans-serif;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

footer h2 {
    color: darkgray;
    font-weight: 400;
    font-size: 1rem;
}

.footerlogo {
    height: 30px;
}

.sociallogo {
    height: 30px;
}

.socialblock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.authorpage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.authorbio p {
    font-family: "pt-serif-pro", sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    color: white;
    margin-bottom: 1rem;
}

.authorbiophoto {
    width: 200px;
    height: 200px;
    border-radius: 200px;
}

.authorarticles h1 {
    text-align: center;
    font-family: 'work-sans', sans-serif;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.topstories {
    height: 1000px;
    width: 100%;

}

.tsentry {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: .5rem;
    padding: 1rem 0;
    border-bottom: 1px solid darkgray;
    text-decoration: none;
}

.tsentry h2 {
    font-family: 'work-sans';
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    line-height: 1;
}

.tsimg {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
}

label {
    color: #111111;
    font-family: 'work-sans', sans-serif;
    font-weight: 400;
}

input {
    margin-bottom: 1rem;
    width: 100%;
}

.formsubmit {
    width: auto;
    padding: 8px;
    background-color: lime;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .8rem;
}

@media screen and (max-width: 600px) {
    header {
        justify-content: center;
    }

    .logo {
        width: 200px;
    }


    nav {
        display: none;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .footerlogo {
        height: 20px;
    }
    .sociallogo {
        height: 20px;
    }
    .homewrapper img {
        aspect-ratio: 2.35/1;
    }

    .mainfeature h1 {
        font-size: 3rem;
    }

    .mainfeature img {
        aspect-ratio: 3/2;
    }

    .homebreak {
        display: none;
    }

    .homegrid {
        grid-template-columns: 1fr;
    }


    .article {
        grid-template-columns: 1fr;
    }
}