:root {
    --margin: 10px 10px;
    --padding: 20px 10px;

    --bshadow: 0px 10px 12px rgb(25 25 25 / 0.34);

    --border: 1px solid black;




}

/*.container {
    margin: 5px;
    padding: 10px 20px;

    box-shadow: 0 0 5px inset rgb(100,100,100);
    border-radius: 10px;

    transition: background-color, color 1s, transform 2s;

}
.container:hover {
    background-color: black;

    color: white;

    transform: translateY(10px);
}*/
html, body {
    cursor: none;
}
body {
    font-family: "JetBrains Mono", monospace;
}

#title-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

h1 {
    font-size: 3em;
    width: 100%;
    text-align: center;

    user-select: none;

    transition: text-shadow 400ms ease;
}
h1:hover {
    text-shadow: var(--bshadow);
}

p {
    padding: var(--padding);
    margin: var(--margin);
}

button {
    font-family: "JetBrains Mono", monospace;

    padding: var(--padding);
    margin: var(--margin);

    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;

    cursor: none;

    --bg: #dcdcdc;
    --text: #595959;
    --accent: #6c6c6c;

    border: none;

    border-radius: 5px;
    border-left: 7px solid;

    transition: transform 200ms ease, box-shadow 200ms ease;
}
button:hover {
    transform: translateY(-5px);
    box-shadow: var(--bshadow);

}
button:active {
    box-shadow: 0 0 0;
    transform: translateY(1px);
}
button a, button:visited {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

img {
    margin: var(--margin);

    /* justify-content: center;
    align-items: center; */

    width: 100%;

    border-radius: 20px;
    transition: transform 400ms ease, box-shadow 400ms ease;
}
img:hover {
    transform: translateY(-10px);
    box-shadow: var(--bshadow);
}

.custom-cursor {
    width: 30px;
    height: 30px;
    background-color: #0a1420;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;

    /* Center the container over coordinates */
    transform: translate(-50%, -50%) scale(1);
    transition: transform 200ms ease;

    /* Flexbox makes centering the inner pseudo-element incredibly simple */
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-cursor::after {
    content: ""; /* Required for pseudo-elements to render */
    width: 20px;  /* Adjust this value to make it smaller or larger */
    height: 20px;
    background-color: rgb(236 236 236 / 0.8);
    border-radius: 50%;
}  /* 3. This state holds continuously as long as the class is present */
.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(0.7);
}



.bar {
    padding: 15px; /* increases bar size */
    margin: 30px;

    max-width: 90%;
    margin-inline: auto;

    background-color: rgba(195,195,195,0.8);
    width: 85%;

    border-radius: 5px;
    box-shadow: inset var(--bshadow);


}

.container {
    padding: var(--padding);
    margin: var(--margin);

    border-radius: 10px;


    display: flex;
    flex-wrap: wrap;
    flex: 15%;

    transition: transform 200ms ease, box-shadow 200ms ease;

    /* border: var(--border); */
}
.container:hover {
    transform: translatey(5px);
    box-shadow: inset var(--bshadow);
}

@media (max-width: 400px) {
    .container {
        flex: 100%;
    }
    button {
        flex: 100%;
    }
}

/* Base card */
.card {
    padding: var(--padding);
    margin: var(--margin);

    border-radius: 5px;
    border-left: 7px solid;

    transition:
            transform 200ms ease,
            box-shadow 200ms ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--bshadow);
}
.card:active {
    box-shadow: 0 0 0;
    transform: translateY(1px);
}

.info-cards {
    width: 100%;

    position: relative;
    /* border: var(--border); */
}
.info-cards:hover {

}

/* Card types */

.info {
    --bg: #BFD9F6;
    --text: #2E4F73;
    --accent: #5B86B8;
    --shadow: rgba(91, 134, 184, 0.3);
}
.caution {
    --bg: #FFF3C4;
    --text: #6B5A00;
    --accent: #D4B100;
    --shadow: rgba(212, 177, 0, 0.3);
}
.warning {
    --bg: #FFD6D6;
    --text: #7A2020;
    --accent: #D14A4A;
    --shadow: rgba(209, 74, 74, 0.3);
}

.card {
    background-color: var(--bg);
    color: var(--text);
    border-left-color: var(--accent);
}

/* ##########################################
new section
########################################## */
