body {
    margin: 0;
    font-family: 'Courier New', Courier;
    background-color: #f4f4f4;
    }

.container {
    display: flex;
    min-height: 100vh; /* så kolumnerna går hela vägen från topp till botten */
}

/* Vänster kolumn */
.left-column {
    width: 30%;
    background-color: #323232; 
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* sprider innehållet över höjden */
}

.profile-pic {
    width: 100%;
    border-radius: 25px;
    margin: 20px 0;
}

.links {
    list-style: none;
    padding: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    color: #ffcc00;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Höger kolumn */
.right-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 bredvid varandra */
    gap: 20px;
    padding: 20px;
}

.right-projects .right-column {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}
.right-column {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.image-link {
    text-decoration: none;
    color: inherit;
}

.image-link img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-link img:hover {
    transform: scale(1.05);
}

.car-image {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px 0;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    text-align: left;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #e6b800;
}
.code-image {
    border-radius: 25px;
    background-color: #73AD21;
    padding: 20px;
    width: 200px;
    height: 150px;
}
