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

body {
    font-family: "Poppins", sans-serif;
}

body ul {
    list-style: none;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    height: 100vh;
    width: 100vw;
    color: #000;
}

.container {
    background-color: #f44647;
    padding: 2vw;
}

.wrap {
    overflow: hidden;
    display: block;
    width: auto;
}

h1 {
    font-size: 15vw;
    display: flex;
    line-height: 0.75;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 3px #fff;
    letter-spacing: 0.05em;
    padding: 7px;
    visibility: hidden;
    overflow: hidden;
}

span {
    display: block;
    position: relative;
}

span::before {
    content: attr(data-char);
    position: absolute;
    left: 0;
    top: -3px;
    transform: translateY(-110%);
    color: #000;
}

span[data-char="8"] {
    -webkit-text-stroke: 3px #fff;
}

span[data-char="8"]::before {
    color: #fff;
    -webkit-text-stroke: 0px transparent;
}

.add {
    font-size: 3vw;
    -webkit-text-stroke: 0px transparent;
    color: #f44647;
    font-weight: 700;
    position: relative;
    text-align: end;
    right: 0.5vw;
}

.comingsoon {
    display: inline-block;
    color: #404040a6;
    line-height: 4;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 15.2px;
}

.technos ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    line-height: 5;
    font-size: 1.2vw;
    color: #404040;
}

li strong {
    color: #f44647;
}

@media all and (max-width: 700px) {
    h1 {
        display: flex;
        line-height: 1;
        padding: 0px;
    }
}

@media all and (min-width: 1400px) {
    .wrap {
        max-width: 80%;
        margin: auto;
    }

    h1 {
        font-size: 10vw;
        display: flex;
        line-height: 0.75;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke: 3px #fff;
        letter-spacing: 0.05em;
        padding: 7px 0 7px 7px;
        visibility: hidden;
        overflow: hidden;
    }
}