{
    margin: 0;
    padding: 0;
}

header{
    background-color: blueviolet;
    display: flex;
    align-items: center;
}

header img{
    max-width: 100px;
    flex: 0;
}

header nav{
    flex: 1;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

header nav a{
    text-transform: uppercase;
    text-decoration: none;
    color: black;
    transition: 0.25s;
}

header nav a:hover{
    transform: scale(1.1);
    color: blue;
    font-weight: bold;
}

footer{
    background-color: blueviolet
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
}

{
    m
}