* {
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    margin: 0;
    padding: 0;
}

html{
    font-size:20px;
    line-height:1.5;
    background-color:#121212;
    color:#f0f0f0;
    font-family:"Inter",sans-serif;
}
body{
    padding:0;
    margin:0;
    background-color:#121212;
    width:100vw;
    height:100vh;
    overflow-x:hidden;
}
.title{
    text-align:center;
    margin: 0.5em auto;
    width:-webkit-fit-content;
    width:-moz-fit-content;
    width:fit-content
}
.listArea{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    justify-content: space-around;
    width:100vw; /* Full width */
    height:100vh; /* Full height */
    margin:auto;
    padding: 1em;
}
.listContainer{
    margin:1em auto;
    padding: 2em;
    min-width: 200px;
    max-width: 50%;
    flex-grow: 1;
    border-radius: 1em;
}
.list{
    width:90%;
    margin:1em auto;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:space-evenly;
    -ms-flex-pack:space-evenly;
    justify-content:space-evenly;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    background-color:#a8a8a8;
    border-radius:1em;
    padding:1em;
    -webkit-box-shadow:3px 6px rgba(192,192,192,.4);
    box-shadow:3px 6px rgba(192,192,192,.4);
    overflow-y: auto;
}
.list .list__el{
    list-style:none;
    background-color:#383838;
    border-radius:1em;
    margin:1em;
    -webkit-box-shadow:3px 6px rgba(0,0,0,.4);
    box-shadow:3px 6px rgba(0,0,0,.4);
    -webkit-transition-property:background-color transform;
    transition-property:background-color transform;
    -webkit-transition-duration:.36s;
    transition-duration:.36s
}
.list .list__el a{
    display:block;
    padding:1em 2em;
    text-decoration:none;
    text-align:center;
    color:#f0f0f0
}
.list .list__el:hover{
    background-color:green;
    transform: scale(1.16);
}
.listTitle {
    text-align: center;
}
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.navigation button {
    padding: 1em;
    cursor: pointer;
    margin-right: 20px;
    background-color: #4CAF50; /* Green background */
    color: white; /* White text color */
    border: none; /* Remove borders */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Add a transition effect */
}

.navigation button:hover {
    background-color: #45a049; /* Darker green on hover */
}

@media screen and (max-width: 768px){
    body{
        overflow:scroll
    }
    .list {
        height: 80%;
    }
    .listArea{
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -ms-flex-direction:column;
        flex-direction:column;
        height: auto;
    }
    .listContainer {
        max-width: 100%;
        margin: 0;
    }
}