html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #eff0f3;
}


header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid black;
    background-color: #eff0f3;
    padding-left: 5px;
    padding-right: 5px;
    position: sticky;
    z-index: 10;
    top: 0;
}

.menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.menu ul {
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
}

.menu ul li {
    margin-right: 5px;
    margin-left: 5px;
}

.menu a {
    color: black;
    text-decoration: none;
}

.menu a:visited {
    color: black;
}

.instagram a {
    display: block;
    height: 20px;
    padding-bottom: 5px;
}

.instagram {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blockHeader{
    font-weight: bold;
    font-size: 25px;
    display: flex;
}

.body{
    display: flex;
    flex-direction: column;
}