@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/*
    https://www.color-hex.com/color-palette/94776
*/

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #353738;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

.avatar {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.roboto-mono-navbar {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 500; /* <weight>: Use a value from 100 to 700 */
    font-style: normal;
    font-size: large;
    color: white;
    margin-bottom: 2px;
}

.roboto-mono-header {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 700; /* <weight>: Use a value from 100 to 700 */
  font-style: normal;
  font-size: xx-large;
  color: white;
  margin-left: 10px;
}

.roboto-mono-helloworld {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 700; /* <weight>: Use a value from 100 to 700 */
    font-style: normal;
    font-size: 70pt;
    color: white;
  }

.roboto-mono-text {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
    font-size: medium;
    color: white;
}

.roboto-mono-undertext {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: small;
    color: white;
    margin-top: 2px;
}

.font-yellow {
    color: #ffc500 !important;
}

.font-green {
    color: #00c41e !important;
}

.font-red {
    color: #ff3c36 !important;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #353738;
    color: white;
    padding: 10px 20px;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

#navbar.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move it into view */
}


.accordion-button {
    background-color: #353738;
    color: white;
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #505050;
    color: var(--hover-color, #ffc500);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.accordion-header {
    font-family: "Roboto Mono", monospace;
    font-weight: 500;
    font-size: medium;
}

.accordion-body {
    background-color: #404040;
    color: white;
    font-family: "Roboto Mono", monospace;
    font-weight: 350;
    font-size: medium;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-item {
    background-color: transparent;
    border: none;
}

.accordion-button::after {
    filter: invert(100%);
}

.accordion-button:hover {
    background-color: #505050;
    color: var(--hover-color, #ffc500);
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
    font-size: 70pt;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.custom-card {
    background-color: #404040;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Roboto Mono", monospace;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
}

.card-img-top {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px 10px 0 0;
}

.card-title {
    font-family: "Roboto Mono", monospace;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.card-text {
    font-family: "Roboto Mono", monospace;
    font-weight: 350;
    font-size: 0.9rem;
    color: #ccc;
}

.card-subtitle {
    font-family: "Roboto Mono", monospace;
    font-weight: 500;
    font-size: 1rem;
    color: #aaa !important;
    margin-bottom: 10px;
}

.custom-btn {
    background-color: #ffc500;
    color: #353738;
    border: none;
    font-family: "Roboto Mono", monospace;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn:hover {
    background-color: #e6a700;
    transform: scale(1.1);
    color: #353738;
}