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

body,
html {
    width: 100%;
    height: 100%;
    font-family: "monument", "Poppins", sans-serif;
}

#main {
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
}

#center {
    width: 80%;
    height: 80%;
    /* background-color: bisque; */
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(0%, -50%);
}

.img-container {
    overflow: hidden;
    height: 100%;
    width: 100%;
    /* background-color: yellow; */
    position: absolute;
}

.img-container img {
    height: 100%;
    /* object-fit: cover; */
}

#one {
    width: 0%;
}

#two {
    width: 0%;
}

#three {
    width: 0;
}

.text {
    height: 100px;
    position: absolute;
    width: 400px;
    bottom: 15%;
    left: -10%;
    overflow: hidden;
    z-index: 999;
    /* background-color: red; */
}

.text h1 {
    /* color: rgb(7, 244, 220); */
    background: linear-gradient(to top, rgb(7, 244, 220), orangered);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    font-size: 4vw;
    top: 100px;
}