body {
    font-family: 'sans-serif';
    background-color: rgb(34,39,46);
    color:rgb(250, 250, 250);
    font-family: sans-serif;
    display:flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    min-height: 100vh;
}

.header {
    display:flex;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 20px;
}

.blog {
    font-weight: 450;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
}
    

.text {
    display:flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.links {
    display:flex;
    flex-flow: row nowrap;
    gap: 20px;
}
.footer {
    background-color: rgb(34,39,46);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

img {
    height: 30px;
    width: auto;
}
 

