        * {
            margin: 0;
            box-sizing: border-box;
        }

        li {
            color: white;
        }

        #logo {
            width: 140px;
            height: 30px;
            margin-top: 37px;
            margin-left: 30px;
            margin-right: 20px;
            position: relative;
            
        }

        #nav-container {
            display: inline-block;
            position: absolute;
            top: 43px;
            font-size: 18px;
            font-family: sans-serif;

        }

        li.nav-item {
            display: inline;
            margin-right: 20px;
            cursor: pointer;

        }

        .no-style {
            text-decoration: none;
            color: inherit;

        }

        #header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
            width: 100%;

        }

        #main {
            height: 100vh;
            width: 100vw;
            position: fixed;
        }

        #background {
            width: fit-content;
            height: 118vh;
            position: relative;
            top: 0;
            left: 0;
        }

        #banner-content {
            position: absolute;
            top: 170px;
            left: 50px;
            color: white;
        }

        .play-button {
            display: inline-flex;
            gap: 10px;
            background: white;
            color: black;
            padding: 8px 20px;
            border-radius: 5px;
            border-color: white;
            font-size: 15px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
            margin-left: 5px;
        }

        .play-button:hover {
            background: white;
            transform: scale(1.05);
        }

        .play-icon {
            width: 0;
            height: 0;
            border-left: 14px solid black;
            border-top: 9px solid transparent;
            border-bottom: 9px solid transparent;
            transition: all 0.3s ease;
        }

        .info-button {
            display: inline-flex;
            gap: 10px;
            background: transparent;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            border-color: white;
            font-size: 15px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(6px);
            margin-left: 15px;

        }

        .info-button:hover {
            background: transparent;
            transform: scale(1.05);

        }

        .info-icon {
            width: 18px;
            height: 18px;
            fill: white;

        }
