main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    height: 100vh;
    margin-inline: auto;
}

main > div.spacer {
    width: 100%;
    height: 100%;
}

main > section {
    display: none;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 50px;
}

main > section > div.avatar {
    position: relative; 
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
    border-radius: 50%;
    overflow: visible;
}

main > section > div.avatar:hover {
    scale: 1.1;
}

main > section > div.avatar > img {
    position: relative; 
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: optimizeQuality;
    filter: grayscale(100%);
    border-radius: 50%;
}

main > section > div.avatar::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    width: calc(100% + 10px); 
    height: calc(100% + 10px);
    border-radius: 40% 60% 70% 20% / 50% 60% 30% 70%;
    background: conic-gradient(
        #000 0%,
        #555 30%,
        #444 60%, 
        #000 100%
    );
    animation: rotate-avatar 3s linear infinite;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

main > section > div.avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px inset;
}

main > section > div.avatar > img {
    z-index: 3;
}

@keyframes rotate-avatar {
    0% { 
        transform: rotate(0deg); 
        border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%; 
    }
    50% { 
        transform: rotate(180deg); 
        border-radius: 60% 40% 30% 70% / 70% 30% 60% 40%; 
        scale: 1.1;
    }
    100% { 
        transform: rotate(360deg); 
        border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%; 
    }
}

main > section > h1, 
main > section > p, 
main > section > a, 
main > section > small {
    text-align: center;
    text-shadow: 1px 1px 1px #eee;
}

main > section > h1 {
    font-family: "Sancreek", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    line-height: 1;
    text-transform: uppercase;
}

main > section > p,
main > section > a {
    font-size: 14px;
    max-width: 700px;
    line-height: 1.6;
}

main > section > a {
    z-index: 8;
    width: fit-content;
    padding: 10px 15px;
    border-radius: 10px;
    color: #fff;
    text-shadow: none;
    background-color: #000;
    box-shadow: 1px 1px 1px #eee;
}

main > section > a:hover {
    scale: 1.05;
}

main > section > small {
    font-size: 11px;
    color: #777;
}

main > section > div.main-stars {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 20px;
    text-shadow: 1px 1px 1px #fff;
}

@media (max-width: 700px) {
    main > section > div.avatar {
        width: 100px;
        height: 100px;
    }
    
    main > section > div.avatar::before {
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        width: calc(100% + 10px); 
        height: calc(100% + 10px);
    }

    main > section {
        padding: 30px 20px;
        gap: 20px;
    }
    
    main > section > h1 {
        font-size: 32px;
    }
}