html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #56DDF0;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #000;
    background-color: #fff;
    display: block;
}
header img {
    height: 90px;
    width: 300px;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    font-size: 25px;
}
.content {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 8px;
}
.docent{
    height: auto;
    width:fit-content;
}
.docent-card {
    background-color: #56DDF0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 200px;
    text-align: center;
    transition: transform 250ms;
}
.docent-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.docenttitle{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.docent-header {
    background-color: pink;
    padding: 15px;
}
.docent-body {
    padding: 15px;
    background-color: #56DDF0;

}
.content h1 {
    font-size: 24px;
}
.content h2 {
    font-size: 20px;
}
.content p {
    font-size: 16px;
}
.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    text-align: center;
    border-top: 1px solid #000;
    background-color: #fff;
}
img{
    height: auto;
    width: 70%;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    margin-right: 10px;
}

nav {
    display: flex;
    gap: 20px;
}

@media only screen and (max-width: 600px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
    }

    nav {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
