html,
body {
    padding: 0px;
    margin: 0px;
    background: #232c39;
    font-family: Figtree;
    color: white;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

img {
    display: block;
    width: clamp(300px, calc(100vw - 2em), 500px);
    margin-bottom: 100px;
}

.texts {
    text-align: center;
}

h1 {
    display: block;
    font-size: 4em;
    margin: 0px;
}

label {
    font-size: 1.3em;
    text-transform: uppercase;
}


@media (max-width: 767px) {
    h1 {
        font-size: 3em;
    }
}


@media (min-width: 768px) {
    h1 {
        font-size: 4em;
    }
}