body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: rgb(11, 11, 11);
    background: radial-gradient(circle at bottom, #724c34, #000000, #0b0b0b);
    color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
}
.container {
    position: relative;
    z-index: 2; 
}
.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.social {
    margin: 0 10px;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.1s ease;
}
.social:hover {
    color: rgb(255, 165, 120);
}
.social i {
    cursor: pointer;
    transition: all 0.2s ease;
}
.social i:hover {
    transform: scale(1.2);
}
.logo {
    max-width: 400px;
    margin-bottom: -125px;
}
.latin-text {
    font-size: 14px;
    font-weight: 300;
    /* text-align: left; */
    margin-left: 10px;
    margin-bottom: 20px;
    color: #c2c2c2;
}
h1 {
    font-size: 48px;
    font-weight: 600;
    margin: 20px 0;
}
p {
    font-size: 20px;
    font-weight: 400;
    max-width: 400px;
    margin: 0 auto;
    color: #c2c2c2;
}
.copyright {
    font-size: 14px;
    font-weight: 300;
    color: #ccc;
}

@media (max-width: 768px) {
    body {
        background: radial-gradient(circle at center, #724c34, #000000, #0b0b0b);
    }
    h1 {
        font-size: 36px;
    }
    p {
        font-size: 18px;
        padding-left: 20px;
        padding-right: 20px;
    }
}