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

header {
    color: #333;
    padding-top: 20px;
    text-align: center;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 0;
}

h1 {
    margin: 0;
}

.projects {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
}

.project {
    position: relative;
    width: 245px;
    height: 185px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.project img {
    width: 245px;
    height: 185px;
    border-radius: 5px;
}

.project h3 {
    margin-top: 0;
}

.caption {
    position: absolute;
    display: none;
    bottom: 0;
    height: 0;
    width: 100%;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.caption span {
    color: white;
}

.project:hover .caption {
    display: block;
    height: auto;
}

ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0 0 20px 0;
}

ul li {
    margin: 5px 10px;
    border-radius: 5px;
}

ul li img {
    width: 30px;
    height: 30px;
}

footer {
    text-align: end;
}

.footer {
    font-size: 12px;
    color: #333;
    padding: 10px;
}
