body {
    font-family: 'Courier New', monospace;
    margin: 0;

}
.header {
    max-height: 5vh;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    justify-items: center;
    padding-bottom: 30px;
    border-bottom: 1.5px solid black;
}
.header img {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    display: block;
}
.header a {
    justify-self: start;
}
.header h1{
    justify-self: center;
    margin: 0;
}
.header i {
    justify-self: end;
    margin-right: 10px;
    font-size: 30px;
}

@media (max-width:600px) {
    .header {
        padding-bottom: 2vh;
    }
    .header img{
        height: 7vh;
    }
    .header h1 {
        font-size: 25px;
    }
    .header i {
        font-size: 25px;
    }
}