* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #080e37, #000002) no-repeat;
    background-size: cover;
}

main {
    width: 90%;
    max-width: 400px !important;
    margin-top: 50px;
}

#header {
    display: flex;
    gap: 15px;
    margin: auto;
}


#perfil {
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.302);
}

#nome {
    font-size: 15pt;
    font-weight: bold;
}

#data-perfil {
    text-align: left;
}

#slogan {
    width: 50px;
    text-align: left;
}

.btn-tag {
    width: 100%;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.204);
    border-radius: 15px;
    background-color: #03869d;
    font-weight: bold;
}

.btn-tag.tiktok {
    background: linear-gradient(45deg, rgb(41, 0, 46),rgb(117, 0, 98), rgb(0, 99, 117));
}

.btn-tag.instagram {
    background: linear-gradient(45deg, rgb(215, 215, 0), rgb(250, 37, 0), rgb(201, 0, 185), purple);
}

.btn-tag.whatsapp {
    background: linear-gradient(45deg, rgb(1, 165, 1),rgb(0, 74, 20));
}

.btn-tag.youtube {
    background: linear-gradient(45deg, rgba(117, 0, 0, 0.993),rgb(235, 0, 0));
}

.dp-box {
    width: 100%;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.204);
    border-radius: 15px;
    background-color: #f7f7f7d7;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.dp-box img {
    width: 100px;
    border-radius: 50%;
    margin: auto;
}

.dp-box span {
    color: #000000;
}

.dp-box p {
    font-weight: 400;
    color: #000000;
}


footer {
    bottom: 0px;
    text-align: center;
    background-color: rgb(32, 32, 32);
    color: rgb(80, 80, 80);
    min-width: 100%;
}