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

body {
    background-image: url(img/high-angle-hand-with-glove-holding-brush.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.imagem {
    display: flex;
    justify-content: center;
}

.imagem img {
    border-radius: 10px;
    height: 200px;
    margin: 100px;
}

.name {
    display: flex   ;
    justify-content: center;
}

.textmarketing {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0px;
}

.name h1 {
    color: white;
    font-size: 22px;
}

.rede-sociais {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}


.midia {
    width: 350px;
}

.midia a {
    /*background-color: rgb(162, 162, 162);*/
    background-color: white;
    border: 2px solid rgba(25, 25, 25, 50%);
    border-radius: 15px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    padding: 20px 10px;
    margin: 5px 0px;
}

.midia a:hover {
    scale: 1.1;
    transition: 2s;
}

.midia .icon img{
    height: 30px;
}


footer {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
}

footer a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
}


@media (max-width: 500px) {
    .imagem img{
        height: 150px;
    }

    .midia {
        width: 200px;
    }

    footer {
        margin-bottom: 10px;
    }
}
