﻿.container {
            max-width: 700px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
            height: 100vh;
        }

        #video-laptop {
            position: relative;
            width: 100%;
            padding-top: 25px; /* Adjust according to the space above the video */
            padding-bottom: 67.5%; /* Aspect ratio to accommodate the video */
            height: 0;
            background: url('./laptop2.png') center center no-repeat;
            background-size: contain;
        }

        #video-laptop video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
            padding: 6% 16% 23% 16%; /* Adjust to fit the video within the laptop frame */
        }