body {
    font-family: Segoe Print;
    margin: 32Spx;
    background-color: #f4f4f4;
    line-height: 1.6;
}
h1, h2, h3 {
    color: #333;
}
a{
    display: inline-block;
    padding-right: 12px;
}
fieldset{
    border-width: 1mm;
    border-color: darkblue;
    border-radius: 12px;
    border-style: ridge;

    article{
        border-radius: 12px;
    }
    img{
        border-style:groove;
        border-width: 1mm;
    }
}
.img[src="img/icon.jpg"]{
    width: 50px;
    border-radius: 50px;
}
img{
    object-fit: contain;
    object-position: right;
}
h1{
    display: inline-block;
}
.section {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.method, .class {
    margin-left: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid #007BFF;
}
.method h3, .class h3 {
    margin: 0 0 5px 0;
    color: #007BFF;
}
.details {
    margin-left: 20px;
}
.example {
    background-color: #e9ecef;
    padding: 10px;
    margin-top: 10px;
    border-radius: 3px;
    overflow-x: scroll;
}
code {
    background-color: #ddd;
    padding: 2px 5px;
    border-radius: 3px;
    width: 100%;
    overflow-x: auto;
}
.collapsible {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
}
.collapsible:hover {
    background-color: #0056b3;
}

.content {
    display: none;
    padding: 10px;
}
.active, .collapsible:hover {
    background-color: #0056b3;
}
ul{
    list-style: none;
    display: grid;
    background: linear-gradient(to right, #007BFF, #0056b3);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    overflow-x: auto;
    width: auto;
    li > a{
        color: white;
        text-decoration: none;
        display: inline-block;
        width: 100%;
        letter-spacing: 1mm;
        font-size: 15px;
    }
    
}
nav{
    position: sticky;
    top: 0px;
}
li > a:hover{
    background-color: #0056b3;
}
