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

body {
    background-color: rgb(67, 67, 236);
}

.wrapper {
    display: flex;
}

.content {
    height: 100vh;
    width: 50%;

    padding: 25px 40px 25px 40px;

    color: white;
    font-size: 2vw;
    text-wrap: pretty;

    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.content a {
    display: inline;
    color: rgb(59, 212, 255);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.content a:hover {
    color: rgb(145, 231, 255);
}

.desc {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.title {
    font-size: 1.5vw;
}

.content .links {
    margin-top: auto;
}

.stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 40%;
    background: rgba(
        255,
        255,
        255,
        0.1
    ); /* напівпрозорий білий, або будь-який колір */
    transform: skewX(-50deg); /* кут нахилу */
    pointer-events: none; /* щоб кліки проходили крізь смуги */
}

.hero {
    height: 100vh;
    width: 50%;
    background-color: rgb(88, 88, 236);
    background-image: url('img/hero.JPG');
    background-position: 80% 20%;
    background-size: cover;
}

.hero a {
    font-size: 1.5vw;
    text-wrap: pretty;

    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 4px;
}

.hero a:hover {
    color: rgb(196, 196, 196);
    text-shadow: 1 1 3px #000;
}

.stripe-1 {
    left: 3vw;
    opacity: 0.5;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 25px 20px 25px;
}

.container .links {
    display: flex;
    justify-content: flex-end;
    font-family: 'Inter', sans-serif;
    /* margin: 0 auto; */
}

@media screen and (width < 1280px) {
    .hero {
        background-position: 70%;
    }
}

@media screen and (width < 1024px) {
    .hero {
        display: none;
    }
    .content {
        width: 100%;
        font-size: 4vw;
    }

    .title {
        font-size: 4vw;
    }

    .stripe {
        width: 60%;
        left: 1vw;
        transform: skewX(-30deg);
    }
}

@media screen and (width < 768px) {
    .stripe {
        display: none;
    }

    .content {
        height: 100vh;
    }

    .content a {
        text-decoration-thickness: 1px;
        text-underline-offset: 2px;
    }

    .content .links {
        margin-top: auto;
    }
}
