body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007BFF;
    color: white;
    padding: 10px;
    text-align: center;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.container {
    margin: 20px;
}

.section {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 20px;
}

h2 {
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

code {
    background-color: #161616;
    color:#15e90e;
    margin:5px;
    padding: 2px 5px;
    border-radius: 3px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}


a {
    color:#ffffff;
    text-decoration: none;
}

a:hover {
    color:#15e90e;
}


/* Responsive styles */
@media only screen and (min-width: 768px) {
    .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .section {
        width: 48%;
    }
}

@media only screen and (min-width: 1024px) {
    .section {
        width: 31%;
    }
}
