* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?q=80&w=2078&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.conteudo {
    background-color: rgba(0, 0, 0, 0.8);
    width: 750px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 8px;
}

img {
    width: 75px;
    margin-bottom: 20px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-media i {
    font-size: 1.1rem;
    color: #ffffff;
}

.social-media a {
    text-decoration: none;
}

h1 {
    background-image: linear-gradient(to bottom, rebeccapurple, #eb04b1);
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: 42px;
}

p {
    margin-bottom: 20px;
    font-weight: 500;
}

h2 {
    background-image: linear-gradient(to bottom, #ccff33, #00e600);
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-size: 30px;
}

.copyright {
    margin-top: 20px;
    margin-bottom: 0;
}

@media(max-width: 768px){
    .conteudo {
        width: 80vw;
    }

    iframe {
        width: 70vw;
    }
}

@media(max-width: 480px){
    iframe {
        width: 65vw;
    }
}