.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100dvh;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 10;
}

header>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
}

header nav {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 100%;
}

header nav :first-child {
    margin: 0 0.5rem 0 0;
}

header nav a {
    margin: 0 0.5rem;
}

header nav a:last-child {
    margin: 0 0 0 0.5rem;
}

header img {
    width: auto;
    height: 10rem;
    margin-top: 15dvh;
}