
.tag {
    font-size: larger;
    font-weight: bold;
    align-self: center;
}

.section-name {
    font-size:x-large;
    font-weight: bold;
    text-align: center;
    align-self: center;
    justify-self: center; 
}

code {
    background-color: black;
    color: white;
}

pre {
    white-space: pre-wrap;
}

.code {
        margin: 10px;

}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    display: flex;
    flex-direction: column;
    margin-block: 40px;
    gap: 20px;
    font-size: larger;
    /* justify-content: center; */
    align-items: center;
}

#menu {
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: larger;
}

#menu a {
    color: #17c600;
    transition: transform 0.3s ease;
}


#menu a:hover {
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
}

#logo {
    font-size: x-large;
    /* justify-self: start; */
}

.examples {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    min-width: 60%
}

.section {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: rgb(207, 207, 207);
    margin: 10px;
}

.example {
    display: flex;
    flex-direction: column;
    /* background-color:rgb(164, 164, 164); */
    margin-bottom: 30px;
}

.output {
    background-color: darkgrey;
    margin: 10px;
}


img {
    max-width: 700px;
    height: auto;
}
