

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    padding: 0px;
    position: relative;
    margin: 0px;

    * {
        overflow: none;
    }
}

.main > div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.back {
    background-image: linear-gradient(270deg, rgb(0, 0, 29), rgb(29, 0, 0));
}

.back img {
    height: 100vh;
    width: 100%;
    opacity: 0.7;
    object-fit: cover;
}

.logo {
    max-width: 400px;
    width: 90%;
}

.main video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: bottom;
    aspect-ratio: 16/9;
}

.front h1 {
    font-size: 60px;
    font-weight: 100;
    transform: translateY(-40px);
}

.fader {
    
}

.island {
    max-width: 450px;
    width: 95%;
    height: 70px;
    background-image: linear-gradient(90deg, rgb(0, 0, 84), rgb(75, 0, 0));
    border-radius: 1000px;
    display: flex;
    transform: translateY(-30px);
    padding: 7px;
    box-sizing: border-box;
}

.islandbtn {
    width: 100%;
    border-radius: 1000px;
    font-size: 17px;
    margin: 0px 5px;
    cursor: pointer;
    color: white;
    transition: 0.4s;
    background-color: transparent;
}

/* .actbtn {
    background-color: rgba(255, 255, 255, 0.089);
    color: rgb(215, 42, 42);
    font-weight: 600;
} */

.islandbtn:hover {
    background-color: rgba(255, 255, 255, 0.089);
}