@font-face {
    font-family: 'Great';
    src: url('source/Great.ttf') format('truetype');
}

@font-face {
    font-family: 'Cormorrant';
    src: url('source/Cormorrant.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('source/Montserrat.ttf') format('truetype');
}

@counter-style emoji {
    system: cyclic;
    symbols: "🎂" "📱" "📍";
    suffix: " ";
}

html {
    height: 100%;
    position: fixed;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    color: #334455;
}

body {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(120deg, #ffeeee 0%, #eeeeff 100%);
}

header, section, footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    z-index: 1;
    height: 150px;
    background-color: #ffffff77;
}

header img {
    height: 200px;
    margin: 50px -70px 0 0;
    pointer-events: none;
}

header h1 {
    margin: 0;
    font-size: 90px;
    font-family: 'Great';
    color: #ffaacc;
    text-shadow: #556677 1px 1px 0;
    white-space: nowrap;
    user-select: text;
}

header ul {
    margin: 0 0 0 -70px;
    user-select: text;
    list-style-type: emoji;
    font-family: 'Montserrat', sans-serif;
    color: #550033;
}

header ul li {
    width: 220px;
    margin: 5px 0;
    font-size: 20px;
}

section {
    height: 100%;
    overflow-y: auto;
    text-align: center;
}

section div img {
    height: 265px;
    width: 265px;
    margin: 5px;
    object-fit: cover;
}

footer {
    height: 50px;
}

footer p {
    margin: 30px 0 0 5px;
    width: 295px;
    font-size: 10px;
    font-style: italic;
    color:#44556677;
}

footer a {
    margin: 0 0 15px 0;
    font-family: 'Cormorrant', serif;
    font-size: 50px;
    color: #556677;
    text-decoration: none;
}

footer div {
    width: 300px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer div img {
    margin: 5px;
    height: 50px;
    width: 50px;
}

footer div img:hover {
    margin: 0;
    height: 60px;
    width: 60px;
}