body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0f0f0f;
    color: #fff;
}

.container_qr_code{
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
}

.container {
    width: 80%;
    margin: auto;
}

header {
    background-color: #222;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    color: #02b786;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

section {
    padding: 25px 0;
}

section h2 {
    margin-top: 0;
    font-size: 2em;
    color: #02b786;
}

footer {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}


form textarea {
    height: 100px;
}

.project {
    margin-bottom: 40px;
}

.project h3 {
    font-size: 1.5em;
    color: #02b786;
    margin-bottom: 10px;
}

.project p {
    color: #ccc;
}

a {
    color: #ccc;
}

.project-image img {
    width: 70%;
    height: auto;
}

.small-project-image img {
    width: 30%;
    height: auto;
}

li {
    font-size: 1.25em;
}

p {
    font-size: 1.25em;
}

.enlarged-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.enlarged-image {
    max-width: 80%;
    max-height: 80%;
}


.project-poker p {
    color: white;
}

.project-poker h3 {
    color:#02b786;
    font-size: 1.4em;
}

.project-uno p {
    color: white;
}

.project-uno h3 {
    color:#02b786;
    font-size: 1.4em;
}

