@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

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

html, body {
    height: 100%;
    /*overflow: hidden;*/
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    font-family: 'Dancing Script', cursive;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-section-of-home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    padding: 20px;
}

.home-header {
    margin-bottom: 20px;
    font-size: 40px;
}

.video-wrapper video {
    width: 85vw;
    max-width: 1200px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 10px;
}


@media (max-width: 800px) {
    .video-wrapper video {
        max-width: 100%;
    }
    .home-header {
        margin-bottom: 10px;
        font-size: 20px;
    }
}

@media (max-height: 600px) {
    .main-section-of-home {
        padding: 10px;
    }

    .home-header {
        margin-bottom: 10px;
        font-size: 20px;
    }
}
@media (min-width: 800px) {
    .home-wrapper {
        width: 100%;
        height: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #121212;
    }

    .main-section-of-home {
        max-width: 90%;
        height: 100%;
        background-color: #000000;
        padding: 20px;
        border: 1px solid #000000;
        border-radius: 5px;
        box-shadow: 0 2px 200px rgba(40, 42, 33, 0.1);
    }
}
