body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    background-color: black;
}
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
}
.hero-text {
    font-size: 8em;
    font-weight: bold;
    background: linear-gradient(148deg, rgba(0,240,255,1) 0%, rgba(250,0,255,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.hero-elements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding-left: 5em;
}
.image {
    height: 100%;
    width: 50%;
    background-image: url('image1.png');
    background-size: cover;
    background-position: center;
}

.button-gr {
    border-radius: 25px;
    background-color: black;
    border: 2px solid ;
    color: white;
    padding: 16px 32px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}