/*! Desktop Mode View */
/** Page Structures */
a,
img {
    -webkit-user-drag: none;
    user-select: none;
}

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

body {
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    color: var(--color-secondary);
}

footer {
    font-family: var(--font-tertiary);
    color: var(--footer);
}

h2 {
    margin-bottom: 0;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;
}

img {
    border-radius: 1rem;
}

p {
    font-size: 14px;
}

/** Selector (Class) */
img:not(.profile__photo) {
    box-shadow: 0 0 2.5px 0 var(--color-secondary);
}

.information {
    border-radius: 0.75rem;
    background-color: var(--color-primary);
}

.information:first-child {
    padding: 0.25rem 1.75rem;
}

.information:not(:first-child) {
    padding: 0.25rem 1rem;
}

.container {
    margin: 2rem 3rem;
    display: grid;
    place-items: center;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.g-4 {
    gap: 1.5rem;
}

.g-5 {
    gap: 3rem;
}

.gallery__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1/2fr);
    gap: 1.25rem;
    width: 100%;
}

.gallery__image {
    width: 100%;
    height: 100%;
}

.gallery__image:nth-child(2) {
    grid-column: 2/-1;
}

.gallery__image:nth-child(3) {
    grid-column: span 2;
    grid-row: 2/3;
}

.gallery__image:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/4;
}

.gallery__image:nth-child(5),
.gallery__image:nth-child(6) {
    grid-row: 3;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

.profile__photo {
    width: 15%;
}

.text-muted {
    color: var(--text-muted) !important;
}

.username {
    font-weight: 700;
    text-decoration: underline;
}

/** Pseudo-classes */
:root {
    --font-primary: 'Montserrat', sans-serif;
    --color-primary: #E5E5E5;
    --color-secondary: #4E5150;
    --color-tertiary: #FFFFFF;
    --text-muted: #A9A9A9;
    --footer: #BDBDBD;
}

a:hover {
    color: initial;
}

/** Pseudo-elements */
::selection {
    background-color: var(--color-primary);
    color: var(--color-secondary);
}

::-webkit-scrollbar {
    height: 0.625rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.625rem;
    border: 4px solid var(--color-tertiary);
    background-color: var(--color-secondary);
}

::-webkit-scrollbar-track {
    background-color: var(--color-tertiary);
}

/*! Mobile Mode View */
@media screen and (max-width: 768px) {
    /** Selector (Class) */
    .container {
        margin: 1rem;
    }
}