* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

body {
    background-color: #111111;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section h2 {
    position: relative;
    /* color: aquamarine; */
    font-size: 6rem;
    background: linear-gradient(90deg, #020024, #09792d, #00d1fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none;
    transition: all 2s ease;
    cursor: pointer;
}

section h2:hover {
    background: linear-gradient(45deg, #00d1fb, #09792d, #020024);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none;
    transition: all 2s ease;
    animation: .4s linear ease-out;


}

section h3 {
    position: absolute;
    background: linear-gradient(90deg, #020024, #09792d, #00d1fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none;
    transition: all 2s ease;
    top: 40px;
    font-size: 3rem;
    cursor: pointer;
}

section h3:hover {
    background: linear-gradient(45deg, #00d1fb, #09792d, #020024);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-shadow: none;
    transition: all 2s ease;
    animation: .4s linear ease-out;

}

section img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}