/* Imports */

@font-face {
    font-family: cheesecake;
    src: url('../fonts/Cheesecake.ttf');
}

/* Body */

body {
    background-color: black;
    color: white;
    overflow-x: hidden;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
}

/* Heading */

header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    cursor: default;
    height: 3.5em;
    left: 0;
    line-height: 3.5em;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    position: fixed;
    right: 2em;
    top: 0;
}

.nav ul {
    margin: 0;
    list-style: disc;
    padding-left: 1em;
}

.nav ul li {
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    width: 8em;
    margin-left: 1em;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 18px;
    border-color: white;
    border-width: 4px;
    border-style: solid;
    cursor: pointer;
}

.nav ul li:hover, .nav ul li:active {
    border-color: cyan;
    color: purple;
}

.nav ul li a {
    border: 0;
    color: inherit;
    display: inline-block;
    height: inherit;
    line-height: inherit;
    outline: 0;
    text-decoration: none;
    font-size: 1.5em;
}

@media only screen and (max-device-width: 480px) {
    .nav ul li {
        width: 9em;
    }

    .nav ul li a {
        font-size: 2em;
    }
}

/* Banner */

.banner {
    position: absolute;
    width: 90%;
    height: 25%;
    left: calc(50% - 45%);
    top: 8%;
    border-radius: 12px;
    border-color: cyan;
    border-width: 8px;
    border-style: solid;
    background-image: url("../media/cyan-heart.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
}

/* Logo */

.logo {
    position: absolute;
    width: 100%;
    height: 90%;
    align-content: center;
    text-align: center;
}

.name {
    font-size: 6em;
    font-family: cheesecake;
    color: cyan;
    text-shadow: cyan 0 0 24px;
}

/* Boxes */

.boxes {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
    top: 55%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.box {
    width: 28em;
    height: 20em;
    margin: auto;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 6px;
    border-color: white;
    border-width: 4px;
    border-style: solid;
    text-align: center;
}

.wide {
    width: 36em;
}

.icon {
    width: 50px;
    height: 50px;
}

.sep {
    display: none;
}

/* Footer */

footer {
    position: fixed;
    background: transparent;
    height: 2em;
    left: 0;
    top: calc(100% - (2em * 2));
    line-height: 3em;
    width: 100%;
    text-align: center;
    color: cyan;
}

.love {
    color: #f87171;
    display: inline;
    height: 1.5rem;
    width: 1.5rem;
    vertical-align: middle;
}