@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Comfortaa:wght@300..700&family=Fredoka:wght@300..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --secondary_color: #AF1B3F;
    --primary_color: #595082;;
    --dark_color: #2C263F;
    --accent_color: #EFC69B;
    --primary_font: Helvetica, Arial, sans-serif;
    --headline_font: Lora, Impact, serif;
    /* color: #213722;
    color: #41644a;
 */
}

.main-nav {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    list-style-type: none;
    padding: 20px;
    display: flex;
    justify-content: end;
    justify-items: end;
    border: 1px solid var(--accent_color);
    overflow: hidden;
    margin: 0 auto;

}

a {
    text-decoration: none;
    padding: 20px;
    /* grid-template-columns: 1fr 1fr 1fr; */
    /* display: flex; */
    color: var(--secondary_color);
    font-weight: bold;

}

body {
    background-color: #2C263F;
    grid-template-columns: 1fr 1fr 1fr;
    color: white;
}

main {
    display:grid;
    grid-template-columns: 30% 70%;
    text-align: center;
}

header h1{
    text-align: center;
    color: var(--primary_color);
    font: 20px;
    padding: 20px;    

}

.articles-container {
    display:grid;
    grid-template-columns: 200px 1fr;
    text-align: center;
}

/* .maincontent {
    position:absolute;
    top:-40px;
} */

.skiptocontent a {
	/* set the element to absolute positioning */
    position:absolute;
    top:-40px;
	/* move it off screen */
	/* Make sure it will be on the left edge of the screen */
	/* Change the background and color to something that stands out */
}
.skiptocontent a:focus {
	/* Move it back on when focused */
    top:0;
}