/* Estilos padrão */
@import url('variables.css');

* {
    transform-origin: center;
}

strong {
    color: var(--text-strong);
}

body {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 10px;
}

/* Remover seleção */

.profile img,
.social-icons,
.container iframe {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Icone de perfil */

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 0.35em solid var(--text-strong);
}

/* Container */

.container {
    background-color: var(--container-background-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container h1 {
    color: var(--text-strong);
}

.container p {
    color: var(--text-color);
    max-width: 500px;
    margin: auto;
}

.container iframe {
    border-radius: 1em;
    width: 80vw;
    height: 45vw;
    margin: 20px auto;
    max-width: 560px;
    max-height: 315px;
}

/* Icones */

.social-icons {
    display: flex;
    text-align: center;
    justify-content: center;
    padding: 10px 0px 0px 0px;
}

.social-icons i {
    color: var(--text-strong);
    cursor: pointer;
    font-size: 1.5rem;
    margin: 0 0.1em;
}

.social-icons i:hover {
    transform: scale(1.1);
}

/* Cores dos icones */

.social-icons i.fa-instagram:hover {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons i.fa-youtube:hover {
    color: #ff0033;
}

.social-icons i.fa-spotify:hover {
    color: #1ed760;
}