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

#wrapper{
    position: relative;
    width: 100vw;
    height: 100vh;
    font-family: "Montserrat", sans-serif;
    overflow: hidden;
}

header{
    position: fixed;
    background-color: rgba(255, 255, 255, 0.308);
    backdrop-filter: blur(2px);
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 80px;
    padding: 1.4rem 2rem 0 2rem;
}
.logo{
    height: 60%;
}
.logo-text{
    height: 60%;
}
.main-section{
    position: relative;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.heading-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: whitesmoke;
    font-size: 6vh;
    text-align: center;
    font-weight: 600;
    text-shadow: 5px 5px 70px rgb(255, 255, 255);
}
.typed-cursor{
    display: none;
}
video{
    height: 85%;
}
.footer{
    width: 100vw;
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 30px;
}

@media only screen and (min-width: 600px) {
    header{
        width: 100vw;
        height: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .logo{
        height: 90%;
    }
    .logo-text{
        height: 90%;
    }
    .main-section{
        position: relative;
        width: 100vw;
        height: 100vh;
        z-index: -10;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .heading-text {
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 6vw;
        font-weight: 600;
        text-shadow: 5px 5px 70px rgb(255, 255, 255);
    }
    video{
        width: 88%;
    }
    .footer{
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 15px;
    }
}