body {
    background-color: #E5E5E5;
}

.wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card {
    background-color: #F2F2F2;
    border: 1px solid #CFCFCF;
    border-radius: 3cap;
    padding: 40px;
    box-shadow: 1px 1px 2px #D9D9D9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    width: 300px;
}

h3 {
    color: #191919;
    margin: 0;
}

p {
    color: #8A8A8A;
    margin: 0;
    font-size: 14px;
}

.pictures-container {
    width: 90%;
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start; 
    gap: 20px;
}

.picture-template {
    width: auto;
    height: calc(auto + 10px);
    padding: 20px;
    padding-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.picture-template-img {
    width: 100%;
    height: auto;
    max-width: 120px;
    border-radius: 3cap;
    box-shadow: 1px 1px 30px #929292b2;
}

.picture-pp {
    width: 40px;
    height: 40px;
    border-radius: 3cap;
    box-shadow: 1px 1px 30px #929292b2;
}

.picture-meta {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 90%;
    gap: 10px;
}

.picture-title {
    font-size: 15px;
}

.picture-author {
    font-size: 12px;
}

.hidden {
    display: none;
}