@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

html, body{
    padding: 0;
    margin: 0;

    font-family: 'Lato', sans-serif;
}

body{
    margin-top: 72px;
    padding: 16px;
}

header{
    background-color: #2E75B6;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 72px;

    z-index: 100;

    border-bottom: 4px solid rgb(35, 88, 138);

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header img{
    height: 100%;

    padding: 0;

    margin-left: 64px;
    margin-right: 64px;
}

.back{
    position: absolute;
    left: 16px;
    top: 0;
    height: 72px;
}
.back a{
    height: 72px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    text-decoration: none;
    color: white;
}
.back a p{
    font-size: 1.4rem;
    margin: 0;
    margin-left: 12px;

    font-weight: bold;
}
.back a i{
    font-size: 1.8rem;
}

@media only screen and (max-width: 500px) {
    .back a p{
        display: none;
    }
}