body {
    background-color: rgba (255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: left;
    height: 100vh;
    width: 100vw;
    padding: 20vh;
    overflow: hidden;
}

article {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 10vh;
    width: fit-content;
}

p {
    font-weight: var(--semi-bold);
    font-size: 7vh;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

p > i {
    font-weight: var(--regular);
    font-size: 8vh;
}

svg {
    position: absolute;
    bottom: 5vh;
    right: 5vh;
    width: 10vh;
    height: 7vh;
    opacity: 0;
    cursor: pointer;
    transition: 500ms;
}

svg path {
    fill: var(--text-color);
    stroke: var(--text-color);
    transition: 500ms;
}

svg:hover path {
    fill: var(--hover-blue-color);
    stroke: var(--hover-blue-color);
}

svg:active path {
    fill: var(--pink-color);
    stroke: var(--pink-color);
}