/*=====================================
        Default elements
=====================================*/
body {
    width: 80%;
    margin: auto;
}

div pre {
    background-color: #F6F6F6;
    margin: 5px 10px 20px 0;
    border-radius: 5px;
    overflow-x: auto;
}

h1 {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    font-weight: bold !important;
}

h2 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    font-weight: bold !important;
}

h3 {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
    font-weight: bold !important;
}

h5 {
    font-size: 1rem !important;
    margin-top: .5rem !important;
}


/*=====================================
        Menu
=====================================*/
.py-5 {
    padding: 20px 0;
}
.pt-5 {
    padding-top: 1.25rem/* 20px */;
}
.pb-3 {
    padding-bottom: 0.75rem/* 12px */;
}
.mb-2 {
    margin-bottom: 0.5rem/* 8px */;
}
.mb-4 {
    margin-bottom: 1rem/* 16px */;
}
.btn {
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #3F00E7;
    border-radius: 7px;
}

.btn-primary {
    background-color: #3F00E7;
    color: white;
}

.btn-info {
    background-color: oklch(0.7206 0.191 231.6 / 1);
    color: black;
}

.btn-outline {
    background-color: white;
    color: #3F00E7;
}


/*=====================================
        For Mobile Specific
=====================================*/
@media screen and (max-width: 640px) {
    body {
        width: 95%;
        margin: auto;
    }
}