* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    font-family: 'Inter', sans-serif;
    color: #f0f0f0;
}

section {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bg-grad {
    background: linear-gradient(90deg, #3494E6, #EC6EAD);
}

.container {
    width: 100%;
    overflow-wrap: break-word;
}

h1 {
    font-size: 96px;
    overflow-wrap: break-word;
}

h1 span {
    font-size: 64px;
    overflow-wrap: break-word;
}

h3 {
    overflow-wrap: break-word;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 64px
    }
    h1 span {
        font-size: 32px;
    }
}