/*
main.css
Copyright (C) 2025 Developers of Framescape.

part of the Framescape project.
*/

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

article .content {
    max-width: 800px;
    width: 90vw;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

article h2 {
    font-weight: 600;
}

.special {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    min-width: 100vw;
    max-height: 80vh;
    height: 80vh;
    max-width: 100vw;
    width: 100vw;

    padding: 0;
    margin: 0;
    margin-bottom: 5vh !important;
    font-size: 48px;
    font-weight: 100;

    background-image: url("/assets/other/articles.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;
    gap: 16px;
}
.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 24px;

    background: var(--accent);

    background: rgba(74, 219, 200, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(5, 5, 5, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.profile img {
    width: 80px;
    height: 80px;

    border-radius: 80px;
}
.profile .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.profile .details p {
    margin: 0;
    font-size: 16px;
}
.profile .details .name {
    font-weight: 600;
    font-size: 24px;
}

.spacer {
    height: 200px;
}