@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: radial-gradient(76.34% 76.34% at 50% 50%, rgba(0, 0, 0, 0.50) 0%, #000 100%),
                url('img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 655px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100px;
}

p {
    color: #FFF;
    text-align: center;
    margin-bottom: 20px;
}

.title {
    font-size: 48px;
    font-weight: 700;
}

.brief {
    font-size: 14px;
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.social img {
    width: 30px;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
    .container {
        max-width: 80%;
    }

    .title {
        font-size: 36px;
    }

    .brief {
        font-size: 12px;
    }

    .social img {
        width: 25px;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        max-width: 90%;
    }

    .title {
        font-size: 24px;
    }

    .brief {
        font-size: 10px;
    }

    .social img {
        width: 20px;
    }
}
