* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: Arial, sans-serif;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: rgb(0, 255, 247);
    padding: 25px 20px;
    border-bottom: 3px solid rgb(0, 255, 247);
    box-shadow: 0 10px 20px rgba(0, 255, 247, 0.5);
}

.logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 80px;
}

#logopic {
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 200px;
}

nav {
    display: flex;
    gap: 20px;
    margin-left: auto;
}

nav a {
    color: rgb(0, 255, 247);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}
#aboutt {
    width: 100px;
}
#selected,
.selected2 {
    color: black;
    text-shadow: 0 0 5px rgb(0, 255, 247), 0 0 10px rgb(0, 255, 247), 0 0 15px rgb(0, 255, 247);
    font-weight: bold;
    margin: 1%;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
}

nav a:hover {
    text-decoration: underline;
}

#test {
    margin: 1%;
}

#achtergrond {
    flex: 1;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-background {
    flex: 1;
    background: rgba(0, 0, 0, 0.01);
    display: flex;
    align-items: center;
    color: white;
    font-size: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

#face {
    height: 60%;
    width: 60%;
    margin-left: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(0, 255, 247) 0.9%, black 99%), url('your-image.jpg');
    background-size: cover;
    background-position: center;
}

#face-container {
    width: 40vw;
}

#title {
    color: rgb(0, 255, 247);
    font-size: 6.3vw;
}

#title span {
    gap: 5px;
}

#title2 {
    color: rgb(0, 255, 234);
    font-size: 5.5vw;
}

ul {
    list-style: none;
    margin-left: 5px;
    color: rgb(136, 225, 255);
}

ul li {
    font-size: 2vw;
}

footer {
    background: black;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-weight: bold;
    color: rgb(0, 255, 247);
    text-align: center;
    padding: 20px;
}

#firework-trigger {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Projecten.html */
#container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 20px auto;
}

.row {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap onto a new line */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adds space between items */
    margin-bottom: 20px;
}

.box {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.text-container {
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    color: black;
    font-weight: normal;
}


#bigcontainer{
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    width: 90vw;
    height: auto;
}
#project{
    background-color: black;
    display: flex;
    flex-direction: row;
    margin: 15px;
}
#projectfoto{
    background-color: black;
    width: 25vw;
    height: 20vh;
}
#textblok{
    background-color: black;
    width: 40vw;
    margin-left: 2%;
    color: rgb(0, 255, 247);
    font-weight: bold;
}