header {
    position: sticky;
    top: 0;
    z-index: 1;
}
menu > img {
    width: 2rem;
    position: absolute;
    right: 0;
    top: 30px;
    transform: translate(-50%, -50%);
}
img.logo {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    z-index: -10;
}
menu {
    background-color: #93d1d9 /*#a4d1d7*/;
    width: 100%;
    height: 60px;
    margin: 0;
    padding: 0;
    margin-top: 35vw;
    overflow: hidden;
    position: relative;
    transition: 0.5s height;
}
menu div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 60px;
    box-sizing: border-box;
    height: 80vh;
    width: 100vw;
}
menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    padding: 1em;
    width: 7rem;
    transition: 0.2s background-color;
}
menu a:hover {
    background-color: #84bdc4;
}
main {
    position: relative;
    padding: 5vw;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background-color: inherit;
    box-sizing: border-box;
}
h1,
h2 {
    align-self: center;
}
main a {
    text-decoration: none;
    color: #1dbace;
}
main .headerimg {
    width: 90vw;
}

main .collage {  
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
    */gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
main .collage img {
    border-radius: 10px;
    width: 40vw;
}

form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
}
input,
textarea {
    background: none;
    outline: none;
    border: 1px solid #93d1d9;
    padding: 3px;
    border-radius: 3px;
    resize: vertical;
}
input:active,
input:focus,
input:hover {
    background-color: #d6eef1;
}
footer {
    background-color: #93d1d9;
    width: 100%;
    min-height: 20vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
footer a {
    text-decoration: none;
    color: inherit;
}
footer .sociallink {
    display: flex;
    height: 2em;
    align-items: center;
    gap: 1em;
}
footer .sociallink img {
    height: inherit;
}
footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 1em;
    flex-direction: column;
}
