.content {
    margin: 20px auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.content h2 {
    font-family: Comfortaa, sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.content p {
    font-family: Comfortaa, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.project {
    flex: 1 1 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background-color: #fafafa;
    transition: box-shadow 0.3s ease;
    width: 50%;    
}

.img_1 {
    position: relative;
    width: 20%;
    height: auto;
    border-radius: 5px;
    right: 0;
}

.img_2 {
    position: relative;
    width: 20%;
    height: auto;
    border-radius: 5px;
    right: 0;
}

.menu_items {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    right: 20px;
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
}

.mobile {
    display: none;
}

.dekstop {
    display: none;
}

.project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.learn_more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ad0c00;
    color: white;
    border-radius: 3px;
    text-decoration: none;
    font-family: Comfortaa, sans-serif;
    transition: background-color 0.3s ease;
}

.learn_more:hover {
    background-color: #941000;
}
