/*

GBA ONLINE;  GBA.JS.ORG;  "Online GameBoy Advance Emulator"
Copyright (C) 2021-present AYVACS
Licensed under the MIT License (view LICENSE.md for more information)

*/

.collapsible-collapsible {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 5px;
    background-color: rgb(29, 29, 29);
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 60%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 30px;
}

.collapsible-active,
.collapsible-collapsible:hover {
    background-color: rgb(39, 39, 39);
}

.collapsible-text,
.collapsible-collapsible a {
    color: white;
    font-size: 30px;
}

.collapsible-content {
    transition: max-height 0.2s ease-out;
    text-align: center;
    overflow: hidden;
    padding: 0 18px;
    font-size: 20px;
    max-height: 0;
    margin: auto;
    width: 60%;
}

button {
	font-family: tuna, sans-serif;
	font-weight: 500;
	font-style: normal;
}