body {
    margin: 0;
    font-family: Arial;
    /* font-family: 'Consolas', monospace; */
    background-color: #222;
    color: #eee;
}

header {
    padding: 60px 20px;
    text-align: center;
    background-color: #333;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ccc;
}

header p {
    font-size: 1.2em;
    color: #ccc;
}

article {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: left;
    line-height: 140%;
    font-size: 1.1em;
}

#pics {
    /* background-color: yellow; */
    background-color: #222;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: left;
    line-height: 140%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.pic {
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px solid #333;
    cursor: pointer;
    transition: transform 0.2s;
}

.pic:hover {
    transform: scale(1.02);
}

footer {
    background-color: #333;
    color: #999;
    text-align: center;
    font-size: 1.1em;
    padding: 20px;
    margin-top: 0;
}

#asd {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    color: #ccc;
    text-align: center;
    line-height: 140%;
    
    /* background-color: white; */
}

a {
    color: #ccc;
}







/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    border: 4px solid #444;
}

.modal-close,
.modal-nav {
    position: absolute;
    color: #fff;
    font-size: 2.5em;
    cursor: pointer;
    user-select: none;
}

.modal-close {
    top: 30px;
    right: 50px;
}

.modal-nav.left {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-nav.right {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}