@keyframes breath {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#grad1 {
    height: 90%;
    width: 90%;
    background-image: conic-gradient(red, yellow, green, blue, red);
    border-radius: 50%;
    box-shadow: 0dvh 1dvh 1dvh rgb(0, 0, 0) inset;
}

#grad1::after {
    height: 100%;
    width: 100%;
    animation-name: breath;
    animation-duration: 1.5s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    background-image: conic-gradient(red, yellow, green, blue, red);
    border-radius: 50%;
    content: "";
    box-shadow: 0dvh .5dvh .8dvh rgb(0, 0, 0) inset;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


#grad2 {
    height: 60%;
    width: 60%;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to bottom, black, white) border-box;
    border-radius: 50em;
    border: .09dvh solid transparent;
    box-shadow: 0dvh 0.5dvh 1dvh -.3dvh rgb(0, 0, 0) inset;
}

#grad3 {
    height: 30dvh;
    width: 30dvh;
    border-radius: 5em;
    flex-shrink: 0;
}

.links {
    font-family:Courier New;
    width: 30dvh;
    flex-shrink: 0;
    font-size: 2.5cqh;
}
#top {
    align-items: flex-start;
}
#bottom {
    align-items: flex-end;
}

.social {
    color: inherit;
    text-decoration: none;
}

a, a:visited, a:hover, a:active {
    color: initial;
}

p {
    margin: 0;
}

div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

html {
    height: 100dvh;
}