/* * {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
} */

h1 {
    text-align: center;

    font-size: 40px;
    font-family: 'Courier New', Courier, monospace;
}

.first {
    padding: 10px;
    display: block;
    border: 3px solid black;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}


b {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 20px;
}

body {
    background-image: url(back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #dbc4f0;
}

section {
    padding-left: 5px;
    padding-top: 10px;
}



body {
    font-family: 'Roboto', sans-serif;
}

.sidebar {
    position: fixed;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #042331;
    transition: all .5s ease;
}

.sidebar header {
    font-size: 22px;
    color: white;
    line-height: 70px;
    text-align: center;
    background: #063146;
    user-select: none;
}

.sidebar ul a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 65px;
    font-size: 20px;
    color: white;
    padding-left: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid black;
    border-top: 1px solid rgba(255, 255, 255, .1);
    transition: .4s;
}

ul li:hover a {
    padding-left: 50px;
}

.sidebar ul a {
    margin-right: 16px;
    text-decoration: none;
}

#check {
    display: none;
}

label #btn,
label #cancel {
    position: absolute;
    background: #042331;
    border-radius: 3px;
    cursor: pointer;
}

label #btn {
    left: 40px;
    top: 25px;
    font-size: 35px;
    color: white;
    padding: 6px 12px;
    transition: all .5s;
}

label #cancel {
    z-index: 1111;
    left: -195px;
    top: 17px;
    font-size: 30px;
    color: #0a5275;
    padding: 4px 9px;
    transition: all .5s ease;
}

#check:checked~.sidebar {
    left: 0;
}

#check:checked~label #btn {
    left: 250px;
    opacity: 0;
    pointer-events: none;
}

#check:checked~label #cancel {
    left: 195px;
}

#check:checked~section {
    margin-left: 250px;
}



body {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    min-height: 100vh;
    /* background-image: url(bg2.jpg); */

}

.accordian {
    max-width: 800px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;

}

.accordian .contentBox {
    position: relative;
    margin: 10px 20px;
}

.accordian .contentBox .label {
    position: relative;
    padding: 10px;
    background: rgb(8, 113, 129);
    color: white;
    cursor: pointer;
}

.accordian .contentBox .label::before {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.accordian .contentBox.active .label::before {
    content: '-';
}

.accordian .contentBox .content {
    position: relative;

    background: whitesmoke;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

.accordian .contentBox.active .content {
    height: 150px;
    padding: 10px;
}