.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: #d463cd;
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.dropbtn:hover {
    background-color: #bc73bc;
}

.home-content {
    display: none;
    position: absolute;
    background-color: #f0e8ee42;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 5px;
}

.home-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.home-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .home-content {
    display: block;
}

body {
    font-family: Inter, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

h1 {
    color: #2c3e50;
    text-align: center;
    margin-top: 20px;
}

h5 {
    text-align: center;
    color: #34495e;
}

.home,
.about,
.projects,
.contact {
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

p {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    max-width: 1200px;
}

.text-container {
    flex: 1;
    margin-right: 20px;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.photo-container {
    flex: 1;
    max-width: 500px;
}

.photo-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text-container {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .photo-container {
        max-width: 100%;
    }
}
.navigation {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px 0;
}

.nav-button {
    background-color: rgba(212, 99, 205, 0.36);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(212, 99, 205, 0.36);
}

.prev {
    margin-right: auto;
}

.next {
    margin-left: auto;
}
