@charset 'UTF-8';


/* Body configs */
body{
    margin: 0px;
    font-family: 'Rubik', Helvetica, sans-serif;
}


/* Header and navbar configs */
header,
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header,
footer{
    background-color: #a41623;
    padding: 15px;
    color: whitesmoke;
}
nav{
    background-color: #2b303a;
    padding: 10px;
}
nav ul{
    list-style-type: none;
}


/* Hyperlink configs */
a{
    color: whitesmoke;
}
a:hover{
    color: #dad2d8;
}


/* Sections configs */
section{
    padding: 15px;
}
