* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Anaheim', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.s-fs {
    font-size: 16px;
}

.fs {
    font-size: 18px;
}

.l-fs {
    font-size: 20px;
}

.t-fs {
    font-size: 24px;
}

img {
    width: 100%;
}

body {
    background-color: #141414;
}

header {
    position: sticky;
    top: 0;
    z-index: 1;
}

nav {
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
}

.dropdown_menu a,
.menu a {
    text-decoration: none;
    color: aliceblue;
    margin: 2vw 3vw;
}

.menu a:hover {
    color: #da5894;
}

nav .logo {
    margin: 20px 50px;
    width: 100px;
}

.logo img {
    width: 100%;
}

.menu {
    display: flex;
    margin: 0 5vw;
}

.hamburger {
    display: none;
    z-index: 1;
    position: relative;
    cursor: pointer;
    margin: 0 70px;

    background: none;
    border: none;
    outline: none;
    user-select: none;

}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background-color: aliceblue;
    border-radius: 6px;
    z-index: 1;
    transform-origin: 0 0;
    transition: 0.4s;
}

.hamburger.is-active span:nth-child(1) {
    transform: translate(-1px, -1px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-45deg);
}

.dropdown_menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 2rem;
    top: 80px;
    width: 300px;
    height: 0;
    background-color: rgba(0, 0, 0, .9);
    overflow: hidden;
    display: none;
    z-index: 1;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .dropdown_menu {
        background-color: rgba(0, 0, 0, .9);
        -webkit-backdrop-filter: blur(2em);
        backdrop-filter: blur(2em);
    }
}


.dropdown_menu a {
    padding: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown_menu.open {
    height: 240px;
}

.f-img {
    width: 98vw;
    position: absolute;
    z-index: -1;
    padding: 10px;
}

.f-img img {
    width: 100%;
    max-height: 300px;
}

.f-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 2vw;
    min-height: 250px;
}

.f-logo {
    width: 150px;
    margin: 15px;
}

.f-logo img {
    width: 100%;
}

.f-text {
    font-size: 18px;
    color: #888888;
    text-align: center;
    padding: 0 20px;
}

.f-icons {
    display: flex;
    margin: 5px;
}

.icon {
    padding: 10px;
    width: 60px;
}

@media (max-width: 800px) {
    .s-fs {
        font-size: 12px;
    }

    .fs {
        font-size: 14px;
    }

    .l-fs {
        font-size: 16px;
    }

    .t-fs {
        font-size: 20px;
    }

    .menu {
        display: none;
    }

    .hamburger {
        display: block;
    }

    nav .logo {
        width: 85px;
        margin: 15px 35px;
    }

    .dropdown_menu {
        display: block;
    }

    .f-logo {
        width: 120px;
    }

    .icon {
        width: 55px;
    }

    .f-img img {
        min-height: 240px;
    }

    .f-content {
        top: 0;
    }
}