* {
    margin: 0;
    padding: 0;
}

html body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: rgb(255, 255, 255);
    background: url("../img/icon-bg.svg"), linear-gradient(164.56deg, #D11C50 0%, #CB1657 60.82%);
    background-repeat: no-repeat;
    background-position: top center;
}

h1 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

strong {
    font-weight: 600;
}

.container {
    margin: 0 auto;
    max-width: 364px;
}

.avatar {
    display: flex;
    margin: 40px auto 20px;
    width: 104px;
    height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(209, 28, 80, 0.25);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.avatar-icon {
    margin: -6px auto 0px;
    align-self: center;
}

.social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin: 24px 60px 32px;
    padding: 0px;
    gap: 12px;
}

.social img {
    width: 32px;
}

.social img a {
    text-decoration: none;
}

.primary {
    display: block;
    margin: 16px auto;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 16px;
    width: 330px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(203, 22, 76, 1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.primary img {
    margin-right: 8px;
}

.primary a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(203, 22, 76, 1);
}

.secondary {
    display: block;
    margin: 16px auto;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 16px;
    width: 330px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.secondary img {
    margin-right: 8px;
}

.secondary a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
}

.logo {
    display: flex;
    justify-content: center;
    margin: 40px auto;
    width: 40px;
}

.author {
    margin: 0px auto;
    padding: 8px 0px;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 10px;
    font-weight: lighter;
}

.author a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}