body {
    background: #F2F2F2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333333;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 275px;
    font-weight: 100;
    letter-spacing: -1px;
    line-height: 1.5;
    text-align: center;
}

h2 {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    font-weight: 200;
    line-height: 32px;
    margin: 0 0 72px;
    text-align: center;
}

p {
    color: #333333;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 24px;
    text-align: justify;
    text-justify: inter-word;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social img {
    width: 50px;
    height: auto;
}

@media (max-width: 1200px) {
    h1 {
        font-size: 200px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 120px;
    }
    h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .social img {
        width: 40px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 80px;
    }
    h2 {
        font-size: 20px;
        line-height: 24px;
    }
    .social img {
        width: 35px;
    }
}