@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;600;700;900&display=swap');

body {
    overflow: hidden;
    background: url('./background.png') no-repeat center center fixed;

    font-family: 'Inter', sans-serif;
    color: white;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    margin: 0;

    font-size: 4rem;
    font-weight: 800;

    background: #7F7FD5;
    background: linear-gradient(to bottom right, #7F7FD5 0%, #86A8E7 50%, #91EAE4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#redes {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.rrss-icon img {
    width: 3rem;
    height: 3rem;
}
.rrss-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 0.75rem #7F7FD5);
}

.description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.description h3 {
    margin-right: .6rem;
    font-size: 2rem;

    font-weight: 400;
}

.description img {
    margin-bottom: .1rem;

    width: 2rem;
    height: 2rem;
}

.remark {
    font-weight: 600;
}

#bgref {
    position: absolute;
    bottom: 1rem;
    right: 50%;
    transform: translate(50%, 0);

    color: white;
    text-decoration: none;
    font-weight: 200;
}
#bgref:hover {
    color: #7F7FD5;
    text-decoration: underline;
}