* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

a{
    color: white;
    text-decoration: none;
}
.bg {

    background-repeat: no-repeat;
    background-position: cover;
    height: 100vh;
    width: 100vw;
    position: fixed;
    /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
    z-index: -1; // this is optional
  }
  .content{
    position: absolute;
    margin-top: 5rem;
    left: 50%; 
    transform: translateX(-50%);
    width: 80%;
  }

body {
    background-image: url("./images/background.jpg");

    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /*background-color: black;*/
    

}

h2{
    font-family: "Red Rose", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 35px;
}
p{
    font-family: "Epilogue", sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 10px;
    line-height: 15px;
    color: #ffffff;
    text-align: inter-word;

}
.container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #00000078;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.left-column, .right-column {
    padding: 40px;
}

.left-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #72726177;
    border-radius: 20px;
    color: white;
}

footer {
    margin-top: 20px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #9fc98d;
    font-family: "Red Rose", sans-serif;
    font-weight: lighter;
    font-style: normal;
    font-size: 16px;
}





.project p {
    text-align: center;
    margin-top: 10px;
}

.right-column {
    width: 75%;
    color: white;
}

.right-column h2 {
    margin-bottom: 20px;
}
/*
.project {
    flex: 1;
    text-align: center;
}

.project img {
    max-width: 100%;
    
    margin-bottom: 10px;
}*/


.project {
    margin-bottom: 20px;
}

.project img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.project p {
    text-align: center;
    margin-top: 10px;
}

