body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}
.header {
    position: relative;
    height: 150px;
    text-align: center;
    color: black;
    z-index: 1;
    background-color: lightblue;
}
#header canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.header h1, .header p {
    position: relative;
    z-index: 2;
}
.floating-image {
    width: 50px;
    opacity: 0.7;
    animation: float 10s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
.container {
    padding: 20px;
    background: #f0f0f0;
    min-height: 80vh;
}
.footer {
    background-color: #282c34;
    color: white;
    text-align: center;
    padding: 10px;
}
.navbar {
    background-color: #007bff;
    padding: 10px;
}
.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.navbar a:hover {
    text-decoration: underline;
}
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.btn-primary:hover {
    background-color: #0056b3;
}
.icon-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.icon-list li {
    display: flex;
    align-items: center;
    margin: 5px;
    box-sizing: border-box;
    padding-right: 10px;
}
.icon-list img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
