body {
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    font-size: 16px;
    background-color: #1d1d1d
}

p {
    margin: 0;
    text-align: center;
    color: white;
}

.center {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#name {
    font-weight: 700;
    font-size: 3rem;
}

.socials {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 1rem;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background: transparent;
}

.socials a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.socials a:hover svg {
    fill: rgba(255, 255, 255, 1);
}

.socials svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill 0.3s ease;
}

.youtube,
.signal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 0.25rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 1rem;
}

.youtube {
    background: #FF0000;
    padding: 0.75rem 1rem;
}

.youtube svg {
    fill: white;
    width: 1rem;
    height: 1rem;
}

hr {
  border: none;
  height: 1px;
  width: 50vw;
  margin: 1rem;

  background: linear-gradient(
    to right,
    transparent,
    white 40%,
    white 60%,
    transparent
  );
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.signal {
    width: auto;
    padding: 0.5rem 0.75rem;
    gap: 0.3rem;
    outline-style: dashed;
    outline-width: thin;
}

.signal svg {
    fill: white;
    width: 1rem;
    height: 1rem;    
}

.email {
    text-decoration: underline;
    color: white;
}
