body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #0a0a0a;
    color: #2d02ad;
    margin: 0;
    display: flex;
}

.big {
    font-family: 'Ubuntu', sans-serif;
    font-size: 2em;
    font-weight: bold;
    color: #2d02ad;
    text-decoration: none;
}


.sidebar {
    width: 250px;
    background-color: #1a1a1a;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    height: 100vh;
   
    
}

.sidebar h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2d02ad;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.sidebar ul li a:hover {
    color: #2d02ad;
}

.content {
    flex-grow: 1;
    padding: 40px;
    z-index: 1;
}

.project-file {
    background-color: #1a1a1a;
    border: 2px solid #2d02ad;
    border-radius: 10px;
    padding: 20px;
    width: calc(33.33% - 20px); 
    transition: transform 0.3s, background-color 0.3s;
    cursor: pointer;
    text-align: center;
}
.project-file:hover {
    transform: scale(1.05);
}

.projects-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
}

.image{
    width: 100%;
    max-width: 250px;
    border: 2px solid #2d02ad;
    border-radius: 10px;
}

.barcode-medium {
    font-family: 'Libre Barcode 128', cursive;
    font-size: 1.25em;
}

.return-container {
    margin-top: auto;
}

.return-button {
    display: block;
    padding: 10px;
    background-color: #2d02ad;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.return-button:hover {
    background-color: #ffffff;
    color: #2d02ad;
}

@media (max-width: 768px) {
    .project-file {
        width: calc(50% - 10px); 
    }
}

@media (max-width: 480px) {
    .project-file {
        width: 100%; 
    }
}
