body{
    background-color: #121e2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


#header{
    padding-top: 20px;
    display: grid;
    grid-template-columns: 20px auto 20px;
    grid-template-rows: auto;
    grid-template-areas: 
    ". logo ."
    ". socials .";
    justify-items: center;
    background-color: #18283A;
}

#logo-container{
    grid-area: logo;
    justify-self: center;
    text-align: center;
    color: white;
}

#social-items{
    grid-area: socials;
    text-align: center;
    display: grid;
    grid-template-columns: 30px 30px 30px 30px;
    gap:5px;
    grid-template-rows: 30px;
    color: #fff;
    padding-bottom: 10px;
}
.social_item{
    font-size: 20px;
    color: #fff;
}

.link_item{
    display: block;
    margin-top: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #18283A;
    border-radius: 5px;
    text-decoration: none;
}