body {
    background-color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    margin: 0;
}

.container {
    display: flex;
    min-height: 50vh;
    margin: 1vh 5vw 0 5vw;
    border-radius: 10px;
    border: white;
    flex-direction: column;
}

.title, .content {
    text-align: center;
    background-color: rgb(24, 24, 24);
    margin: 10px;
    border-radius: 20px;
    position: relative;
}

.content {
    display: flex;
    gap: 2em;
    min-height: 50vh;
    padding: 2em;
}

.links {
    flex: 1;
    min-width: 5em;
    border-radius: 10px;
    background-color: rgb(36, 36, 36);
}

.icon {
    margin-top: 1em;
}

a {
    text-decoration: none;
    color: white;
}

a:hover {
    color: rgb(218, 215, 215);
}


.actual-content {
    flex: 100;
    border-radius: 10px;
    background-color: rgb(24, 24, 24);
}

.actual-content img {
    padding: 1em;
    max-width: 30%;
}

p {
    text-align: left;
    font-size: 1.5em;
}

.infographic {
    text-decoration: underline;
}

@property --angle{
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.title::after, .title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    border-radius: 20px;
    z-index: -1;
    padding: 2px;

    background-image: conic-gradient(from var(--angle), transparent 1% ,#f00ff0);
    animation: 3s spin linear infinite;
    scroll-snap-align: center;
}

.title::before {
    filter: blur(3px);
    opacity: 0.5;
}
@keyframes spin {
    0% {
        --angle: 0deg;
    } 100% {
        --angle: 360deg;
    }
}