@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff3e0;
    color: #333;
    transition: background-color 0.5s ease;
}

header {
    background-color: #ff7043;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #ff7043, #ff8a65, #ffab91);
    z-index: -1;
    transform: translateX(-100%);
    animation: slide 5s infinite;
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

section {
    padding: 20px;
    margin: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

h2 {
    color: #ff7043;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background-color: #ff7043;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 100%;
}

a {
    color: #ff7043;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff8a65;
    text-decoration: underline;
}

.project {
    margin-bottom: 20px;
}

.project h3 {
    margin: 0;
    font-size: 1.5em;
}

.project p {
    margin: 5px 0;
}

.project a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ff7043;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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