body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('../imgs/background.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5em;
    margin: 0;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.app-list {
    list-style: none;
    padding: 0;
}

.app-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 10px;
    width: 80%;
    max-width: 400px;
}

.app-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.app-description {
    font-size: 0.9em;
    color: #e0e0e0;
    margin-top: 5px;
}

.app-item img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
}

.app-name {
    font-size: 1.2em;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
}

footer a {
    color: #1E90FF;
    text-decoration: none;
}

@media (max-width: 600px) {
    .app-item {
        width: 90%;
    }
} 