:root {
    --text-col: #ffffff;
    --text-col-aux: #F5F5F5;
    --aux-col-1: #0d6efd;
    --aux-col-2: #ff8c00;
    --bg-color: #181818;
    --bg-color-black: #000000;
    --important-col: #ff8c00;
}


html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: "Nunito", sans-serif;
}

.footer {
    border-top-color: var(--aux-col-1) !important;
}

.card-footer .btn {
    align-content: center;
    display: block;
    border-radius: 50%;
    border-color: var(--aux-col-1);
    background-color: var(--aux-col-1);
    display: flex;
    justify-content: center;
    align-items: center;
}


* {
    color: var(--text-col);
}

h2.section-header {
    font-size: 30px;
    justify-content: center;
    text-align: center;
    margin: 30px 0px 25px 0px;
    color: var(--text-col);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

/*Date*/
h5.date {
    font-size: 16px;
    background-color: var(--aux-col-2);
    padding: 4px 12px;
    display: inline-block;
    font-weight: 400;
    color: var(--text-col-aux);
}

h5.institution {
    font-size: 16px;
    background-color: purple;
    padding: 4px 12px;
    display: inline-block;
    font-weight: 400;
    color: var(--text-col-aux);
}

.date-container {
    display: flex;
    justify-content: flex-start;
}

.date-container-float {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--text-col);
    padding: 5px;
    border-radius: 5px; /* Optional: Adds some rounding to the container */
    display: flex;
    flex-direction: column; /* Ensure the dates are stacked vertically */
    align-items: flex-end;
}

h5.card-title-custom {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--aux-col-1) !important;
    text-align: center;
    font-size: 14px;
}

p.card-text-custom {
    font-style: normal;
    color: var(--text-col) !important;
    text-align: justify;
    font-size: 12px;
}

.card-body-bg {
    background-color: var(--bg-color-black);
}

.link-button {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    overflow: hidden;
    font-size: 100%;
    background-color: var(--aux-col-1);
    width: 30px;
    height: 30px; 
    line-height: 30px;
}

.link-button:hover {
    transition: .2s ease;
    background-color: var(--aux-col-2);
    border-color: var(--aux-col-2);
}

/*------------Navbar------------*/

.navbar {
    background-color: var(--bg-color-black);
    color: var(--text-col);
}

.navbar .navbar-brand,
.navbar .nav-link,
.navbar .navbar-toggler-icon {
    color: var(--text-col) !important;
}

.navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, .1);
}


