html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    color: #333;
}

header {
    background-color: #4b0082;
    padding: 10px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 15px;
}

header nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.project-section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #ffffff;
}

.project-info, .project-description, .project-skills {
    width: 30%;
    padding: 15px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-info:hover, .project-description:hover, .project-skills:hover {
    transform: scale(1.05);
}

.image {
    width: 350px;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 15px;
}


.stars {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.stars .filled {
    color: gold;
}

.stars .empty {
    color: grey;
}

.stars .filled, .stars .empty {
    margin: 0 2px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.project-description {
    width: 60%;
    padding: 15px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-description ul {
    list-style-type: none;
    padding-left: 0;
}

.project-description ul li {
    background-color: #4b0082;
    color: #ffffff;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    text-align: left;
}

.project-skills ul {
    list-style-type: none;
    padding-left: 0;
}

.project-skills ul li {
    background-color: #4b0082;
    color: #ffffff;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    text-align: left;
}

button {
    color: #090909;
    padding: 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    cursor: pointer;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
}

button:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}

footer {
    background-color: #4b0082;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: auto;
}