



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}

.Capsule {
    background-image: url("/assets/Gambits\ 2-02.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.logo img {
    position: absolute;
    width: 200px;
    margin-top: -100px;
    cursor: pointer;
    margin-left: -1rem;
    display: flex;
}


.Capsule {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #050000;
    color: white;
    z-index: 2;
    transition: 1.5s;
}

.Capsule.active {
    right: 300px;
}

.Capsule header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle {
position: relative;
width: 60px;
height: 60px;
background: url(/icons8-menu-50.png);
filter: invert(1);
background-repeat: no-repeat;
background-size: 30px;
background-position: center;
cursor: pointer;
}

.toggle.active {
    background: url(/icons8-close-50.png);
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: center;
}
.logo {
    text-transform: uppercase;
    cursor: pointer;
}

.Capsule video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text {
    position: relative;
    z-index: 10;
}

.text h2 {
    font-size: 5.5em;
    font-weight: 800;
    line-height: 1em;
    text-transform: uppercase;
    text-shadow: 10px 10px 10px #000;
}

.text p {
    font-size: 1.2em;
    margin: 20px 0;
    font-weight: 400;
    max-width: 700px;
    text-shadow: 10px 10px 10px #00000000;
}

.text a {
    display: inline-block;
    font-size: 1em;
    background: #000000;
    box-shadow: 1px 0px 5px;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.aw {
    margin-right: 20px;
}

.text a:hover {
letter-spacing: 4px;
}

.socials {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials li {
    list-style: none;
}

.socials li a {
    display: inline-block;
    filter: invert(1);
    margin-right: 20px;
    transform: scale(1);
    transition: 0.5s;
    
}

.socials li a:hover {
    transform: scale(1) translateY(-16px);
}

.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul {
    position: relative;
    list-style: none;
  
}

.menu ul li {
    line-height: 3rem;
    
}

.menu ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #00000095;
    transition: 1.5s;
}


.menu ul li a:hover {
color: #484848;
font-size: 40px;
}

@media(max-width: 798px) {
    .Capsule, .Capsule header {
        padding: 40px;
    }
    .text h2 {
        font-size: 3em;
    }
}


@media(max-width: 900px) {
    .Capsule {
        background-image: url("/assets/gammbitzz-01.png");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 1;
    }
}