.noScroll {
    overflow: hidden;
    position: fixed;
}

#menu-icon {
    position: absolute;
    right: 24px;
    top: 24px;
    opacity: 1;
    z-index: 6;
}

body {
    cursor: none;
    position: relative;
    padding: 0 0;
    margin: 0 0;
    height: 100vh;
    width: 100%;
    background-image: url('../../img/background/background.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;

    .navbar {
        position: absolute;
        width: calc(100vw - 48px);
        padding: 24px;
        z-index: 5;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        font-family: 'Delight', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #AE041E;

        .links {
            display: flex;
            flex-direction: row;
            gap: 24px;
        }

        a {
            cursor: none;
            text-decoration: none;
            color: #AE041E;
        }
    }

    @media (width <900px) {
        .navbar {
            position: fixed;
            right: -100vw;
            width: calc(100vw - 48px);
            height: calc(100vh - 48px);
            background-color: #AE041E;
            color: #f0f0f0;
            flex-direction: column;
            justify-content: space-between;
            align-content: flex-end;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 24px;
            overflow-x: hidden;
            transition: all 0.8s ease-in-out;

            .top-bar {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 24px;

                .links {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                    gap: 24px;

                    #close-icon {
                        opacity: 0;
                    }
                }

                a {
                    color: #f0f0f0;
                    font-family: 'Thunder', sans-serif;
                    font-weight: 700;
                    font-size: 96px;
                }
            }

            .bottom-bar {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-around;
                width: 100%;
                gap: 24px;

                a {
                    color: #f0f0f0;
                }
            }
        }
    }

    main {
        height: 100vh;
        width: 100%;
        position: relative;
    }
}
