@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Hebrew:wght@100..800&display=swap');
/* Custom fonts above */

:root {
    /* Light mode */
    --text: #3f4857;
    --border: #347383;
    --page-bg: #EDF1C4;
    --container-bg: #E4DFEC;
    --main-bg: #ffffff;
    --header-bg: #FCEEE5;
    --link: #347383;
    --link-hover: #8DD3AE;
    --link-border: #8DD3AE;
    --link-border-hover: #347383;
    --shadow: rgba(82, 15, 150, 0.2);
    --page-bg-img: url('https://files.catbox.moe/u604q0.png');
    /* Background Picture */
    --side-img: url('https://files.catbox.moe/efjtnx.jpg');
    /* Profile Picture */
    --em: #980ff4;
}

[data-theme="dark"] {
    /* Dark mode */
    --text: #f3f3f3;
    --border: #a5a4e9;
    --page-bg: #05082C;
    --container-bg: #231A39;
    --main-bg: #111111;
    --header-bg: #44388D;
    --link: #8F85B9;
    --link-hover: #FFFFFF;
    --link-border: #FFFFFF;
    --link-border-hover: #8F85B9;
    --shadow: rgba(71, 4, 107, 0.2);
    --em: #d28fff;
    --page-bg-img: url('https://files.catbox.moe/cux810.jpg');
    /* Background Picture */
    --side-img: url('https://files.catbox.moe/opu0ks.jpg');
    /* Profile Picture */
}

body {
    font-family: "Ubuntu Condensed", sans-serif;
    /* Custom font */
    color: var(--text);
    background-image: var(--page-bg-img);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    background-color: var(--page-bg);
    line-height: 1.6em;
}

#container {
    background-color: var(--container-bg);
    border: 1px var(--border);
    border-radius: 10px;
    margin: 40px 30px 40px auto;
    max-width: 900px;
    box-shadow: 10px 10px var(--shadow);
}

#flex {
    display: flex;
}

/* For other screens */
@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    #sidebar {
        order: 2;
        width: 100%;
        padding-right: 10px;
    }

    main {
        order: 1;
    }
}

header {
    justify-content: center;
}

footer {
    justify-content: space-between;
}


header,
footer {
    color: var(--link);
    background-color: var(--header-bg);
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 15px;
    display: flex;
}

#sidebar {
    min-width: 220px;
    margin: 10px;
    color: var(--text);
}

#sideimg {
    height: 220px;
    background-image: var(--side-img);
    background-size: cover;
    border: 1px dashed var(--border);
    border-radius: 5px;
    margin-bottom: 12px;
}


main {
    padding: 20px;
    border: 1px dashed var(--border);
    margin: 10px;
    background-color: var(--main-bg);
    width: 100%;
}

/* Links and Menu */
a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px dotted var(--link-border);
}

a:hover {
    color: var(--link-hover);
    border-bottom: 1px dotted var(--link-border-hover);
}

::selection {
    background-color: #8f85b9;
    color: floralwhite;
}

b,
strong {
    color: var(--border);
    background-color: var(--page-bg);
}

#info {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: var(--text);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

details {
    background-color: var(--main-bg);
    border: 1px dashed var(--border);
    padding: 5px 8px;
    margin: 10px 0;
    box-shadow: 5px 5px var(--shadow);
}

main details {
    background-color: var(--container-bg);
}

i,
em {
    color: var(--em)
}

.parent {
    text-align: center;
}

/* To centralize elements use centre */
.centre {
    text-align: center;
}

/* CD player centralization */
.cdcentre {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nounderline a {
    border-bottom: none !important;
}

main img {
    max-width: 100%;
    height: auto;
    border: 1px dashed var(--border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

main img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

main p {
    text-align: justify;
}

/* CD Player */

.cd-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.cd-player {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('https://files.catbox.moe/26outz.jpg') no-repeat center/cover;
    border: 3px solid #ccc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.cd-player::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.cd-container:hover .play-button {
    opacity: 1;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Div's Border */

.scroll {
    font-family: "Playpen Sans Hebrew", cursive;
    font-size: 14px;
    width: 85%;
    height: 200px;
    padding: 10px;
    overflow: auto;
    border-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAKqADAAQAAAABAAAAKgAAAADUGqULAAAAvUlEQVRYCe3XwQ2AIBAEQDT2YH324dM+rM8qNPfY5GIgnGQ/4Po5IrDC4IeU9HAFJlbctu63zzqvg5ZtubMPH7ptkm9N23DpfStGN6Lh/yin1qrj50X/5W5EF7+7SDsqgBMojUd/5Js2ZlzRmgCkSpK1+aX+/4qyJSHcjagWiiNjVYmyJJEjUUiwqkRZksiRKCRYVaIsSeRIFBKsKlGWJHIkCglW/Xyvxy2TtYBoTjdHH92QxklAAhKQQF7gAfLbIBFo5nf9AAAAAElFTkSuQmCC") 14 / 14px / 0 round;
    border-width: 14px;
    border-style: solid;
}

.scroll ul {
    list-style: none;
    padding-left: 0;
}

.scroll ul li::before {
    content: "☽";
    margin-right: 8px;
    color: rgb(179, 0, 255);
}

/* WebKit */
.scroll::-webkit-scrollbar {
    width: 8px;
    /* largura da scrollbar */
}

.scroll::-webkit-scrollbar-track {
    background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
    background: transparent;
}

.scroll {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}