@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,300&display=swap');

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
/* styles.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #2C2C2C;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2C2C2C;
    margin-right: 50px;
}

.logo img {
    height: 40px;
    margin-left: 50px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

.nav a:hover{
    color: #003893;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px;
}

.text-container {
    max-width: 600px;
}

h1 {
    font-family: Bebas Neue;
    font-size: 150px;
    font-weight: bold;
    margin: 0;
    color: #ffffff;
}

.quote {
    font-size: 24px;
    font-style: italic;
    margin-top: 10px;
    color: #ffffff;
}

.description {
    font-size: 18px;
    margin-top: 10px;
    color: #ffffff;
}

.image-container{
    display: flex;
    justify-content: flex-end;
}

.image-container img {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(50px 4px 8px rgba(0, 0, 0, 0.6));
    margin-left: 0px;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 80%;
    }

    .text-container {
        text-align: left;
    }

    .image-container {
        margin-left: 40px;
    }
}

.projects-section {
    text-align: center;
    margin-top: 40px;
    background-color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.projects-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #ffffff;
}

.projects-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 30px;
}

.project {
    background-color: #444;
    padding: 20px;
    margin: 10px;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: scale(1.05);
}

.project h3 {
    font-size: 24px;
    color: #ffffff;
}

.project p {
    font-size: 16px;
    color: #ccc;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.project a:hover {
    background-color: #003893;
}

footer{
    background-color: #1d1d1d;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    font-weight: bold;
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    
}
