
* {
    margin: 0;
    padding: 0;
    user-select: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000000;
}

h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: -120px;
    color: white;
    font-size: 10em;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    color: #000000;
    clip-path: circle(0px at center center);
    /* clip-path: circle(300px at center center); */
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 200vh;
    padding: 100px;
    background: #fff;
    color: #000000;
}

.container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.innerText {
    position: fixed;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 1;
    font-size: 10vw;
    color: #000000;
    text-align: center;
    width: 100%;
}

.text {
    position: fixed;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 1;
    font-size: 10vw;
    color: transparent;
    -webkit-text-stroke: 2px #000000;
    text-align: center;
    width: 100%;
}


button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    font-size: 35px;
    font-weight: bold;
    width: 250px;
    height: 50px;
    border-radius: 25px;
}

button a {
    text-decoration: none;
    color: #000000;
}

@media screen and (min-width: 300px) and (max-width: 800px) {
    .innerText, .text {
        font-size: 5.5em;
    }

    .container p {
        font-size: 1.5em;
        font-weight: 500;
        letter-spacing: 1.5px;
        width: 100%;
    }

    h3 {
        font-size: 5.5em;
    }

    .container h2 {
        font-size: 2em;
        margin-bottom: 50px;
    }
}
