body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ff6b6b;
}

p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

@media(max-width: 480px){
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .subscribe-form input {
        width: 150px;
    }
}
