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

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1D1D1D;
    height: 100vh;
    width: 100vw;
}

header{
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#logo{
    font-weight: bold;
     color: #095364;
}

nav{
    display: flex;
    gap: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}

nav a:hover{
    color: red;
}

#Contact{
    background-color: #ff6243;
    padding: 10px;
    border-radius: 3px;
    color: black;
}

#Contact:hover{
    background-color: white;
}

.project-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.project{
    width: 40%;
    padding: 2%;
    /* border: 5px solid white;
    border-radius: 5px; */
}

.project h2{
    color: #296b79;
}

.project p{
    color: white;
}
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    border-top: 1px;
   background-color: #111;
    color: #F0F8FF;
    padding: 60px;
    margin-top: 40px;
}