* {
    margin: 0;
    padding: 0;
}

body {
    background: url("../../img/bg.png");
    /* background-color: #333; */
}

/* ---- Fonts ---- */

@font-face {
    font-family: "Raleways";
    src:url("../../fonts/Raleway-Regular.ttf");
}

/* ---- GENERAL ---- */
.site {
    font-family: 'Holtwood One SC', sans-serif;
}

.text-logo {
    font-family: 'Holtwood One SC', sans-serif;
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    color: #e7480f;
    text-shadow: 2px 2px #ffd301;
}

/* ---- NAV ---- */

.nav-link {
    color: aliceblue;
}

.nav-link:hover,  .nav-link:focus{
    background-color: #eee;
    border-radius: 2px;
    color: #e7480f;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #e7480f;
    border-radius: 2px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link:focus {
    border: none;
    background-color: #e7480f;
    box-shadow: none;
}

/* CARD */

.order-card {
    background-color: #fff;
    margin-bottom: 25px;
    border-radius: 5px;
    width: 350px;
    padding: 5px 5px 15px 5px;
}

.order-card img {
    width: 100%;
    background-color: rgb(255, 187, 0);
}

.order-card h2 {
    font-size: 22px;
    color: #e7480f;
}

.order-card p {
    color: #333;
    font-size: 15px;
}

.order-card .price {
    padding: 4px 10px;
    position: absolute;
    margin-top: 10px;
    margin-left: 300px;
    margin-right: 20px;
    right: 1;
    background-color: rgb(63, 184, 63);
    color: aliceblue;
    font-weight: bold;
    border-radius: 2px;
}

.btn-primary {
    background-color: #e7480f;
    width: 100%;
    line-height: 30px;
    text-align: center;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: rgb(175, 5, 5);
}

.btn-primary li {
    text-transform: uppercase;
    font-weight: bold;
}

.nav-link:hover {
    cursor: pointer;
}
/* ---- ADMIN ---- */

.admin {
    background-color: aliceblue;
    padding: 50px;
    border-radius: 10px;
}

.help-inline {
    color: red;
}