/* Containers */
.container-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.container-gray {
    background-color: var(--bg-gray);
    color: var(--text-dark);
}


/* Links */
.link-white {
    color: var(--text-white);
    text-decoration: None;
}
.link-white:hover {
    color: var(--text-gray);
    text-decoration: underline;
}

.link-dark {
    color: var(--text-dark);
    text-decoration: None;
}
.link-dark:hover {
    color: var(--text-gray);
    text-decoration: underline;
}


/* Lines */
.line-300-red {
    height: 2px;
    width: 300px;
    background-color: #D22832;
}

.line-under {
    margin-bottom: -3px;
}


/* text */
.text-muted {
    color: var(--text-gray);
}
.link-muted {
    color: var(--text-gray);
}
.link-muted:hover {
    color: var(--text-dark);
}
.link-anonymous {
    text-decoration: none;
}

.text-small {
    font-size: 12px;
}

.text-bold {
    font-weight: 600;
}

.text-copyright {
    text-align: center;
    font-size: 10px;
    color: var(--text-gray);
}

.text-muted-on-dark1 {
    color: var(--text-gray);
}
.text-muted-on-dark {
    color: var(--text-light-gray);
}


/* Link box */
.link-box-dark {
    padding: 8px 16px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: .2s;
    color: var(--text-dark);
    border: 2px solid var(--blue);    
}
.link-box-dark:hover {
    color: var(--text-white);
    background-color: var(--blue);
}

.link-box-white {
    padding: 8px 16px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: .2s;
    color: var(--text-white);
    border: 3px solid var(--red);    
}
.link-box-white:hover {
    color: var(--text-white);
    background-color: var(--red);
}

.link-box-green {
    padding: 4px 8px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--green);    
    border-radius: 5px;
    transition: .2s;
    color: var(--text-dark);
    font-size: 12px;
}
.link-box-green:hover {
    color: var(--text-white);
    background-color: var(--green);
}


/* Align */
.center-buff-25 {
    padding-top: 25vh;
    text-align: center;
}



.center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Button */
.button {
    padding: 4px 8px;
    display: inline-block;
    background-color: transparent;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: .2s;
}
.button-dark {
    border: 2px solid var(--bg-dark);    
    color: var(--text-dark);
}
.button-dark:hover {
    color: var(--text-white);
    background-color: var(--bg-dark);
}
.button-white {
    border: 2px solid var(--bg-white);    
    color: var(--text-white);
}
.button-white:hover {
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Logo */
.logo-container {
    height: 100px;
    width: 150px; 
}
.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}


.link-danger {
    color: var(--text-gray);
}

.link-danger:hover {
    color: var(--danger);
}

.link-change {
    color: var(--text-gray);
}
.link-change:hover {
    color: var(--change);
}


/* contact */
.contact-form {
    width: 650px;
}


/* footer */
.footer-top {
    min-height: 150px;
}
