/* styles.css */
/* TAG -------*/
body {
    height: 100vh;
}

button {
    background-color: #ed1c24 ;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: black;
}

a{
    text-decoration: none;
    color: black;
}

a:hover {
    text-decoration: underline;
}

/* CLASS -----*/
.header {
    background-color: #ebebeb;
}

.dashboard {
    min-height: 80%;
    height: auto;
	padding-top: 2.5%;
	padding-bottom: 1.5%;
}

.copyright {
    color: white;
}

.btn-danger{
    background-color: #ed1c24 !important;
    border-color: #ed1c24 !important;
}
/* ID --------*/
/*@MEDIA -----*/
@media only screen and (max-width: 920px) {
    /* For mobile phones: */
    .mt-small-3{
      margin-top: 1rem !important;
    }
}
  

