    @font-face {
        font-family: sdc-font;
        src: url('../fonts/UniversalCollegeDraft-LmyD.ttf');
    }

    .container {
        padding: 80px 120px;
    }

/* Navbar */
    .nav-container {
        background-color: #ffe5e500;
        display: flex;
        justify-content: center;
        border: 1px solid #FFE5E5;
        min-width: 250px;
        transform: translateY(-20px);
        height: 60px;
    }
    .nav-link {
        color: #FFE5E5;
        font-weight: 200;
    }
    .navbar, navbar-light {
        /* font-family: sdc-font; */
        /* font-size: 25pt;
        padding-top: -15px; */
        position: sticky;
    }
    .nav-link {
        text-transform: capitalize;
    }
    .nav-link:hover {
        color: #ffacb1;
    }
    header {
        display: flex;
        justify-content: center;
        min-width: 250px;

    }
    .logo-container {
        font-family: sdc-font;
        color: #FFE5E5;
        text-decoration: none;
        margin-left: -20px;
        height: 140px;
        width: 190px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 60pt;
        transition: all 0.15s ease-in-out;
    }
    .logo-container:hover {
    color: #ffacb1;
    }
    .lc-top {
        transform: translate(20px, -20px);
        height: 30px;
    }

    .carousel {
        max-width: 1000px;
        border-radius: 5px;
    }
/* Stock Items */
    a {
        color: #F9DAFBf8;
        text-decoration: none;
        transition: all 0.15s ease-in-out;
    }
    a:hover {
        color: #ffacb1;
    }
    img{
        /* width: 180px; */
        width: 100%;
        max-width: 1000px;
    }

    body {
        /* background-image: url('./blurry-lights-bg.gif'); */
        background-color: black;
        color: #FFE5E5;
        font-weight: 100;
    }
    body, html {
        height: 100%;
        padding: 10px;
    }

    .center {
        align-items: center;
        justify-content: center;
        width: 100%;
        display: flex;
    }


.fixed-top {
	    top: -40px;
	    transform: translateY(20px);
	    transition: transform .3s;
        padding-top: 20px;
    position: fixed;
}

.fixed-top-rev {
    top: 0px;
    transform: translateY(-20px);
	transition: transform .3s;
}

.logo {
    margin-top: -50px;
}

@media screen and (max-width: 2000px) {
  .img-grid_col {
    flex: 50%;
    max-width: 50%;
  }
  .container {
      margin-top: 60px;
      padding: 10px 50px !important;
      word-wrap: break-word;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .img-grid_col {
    flex: 100%;
    max-width: 100%;
  }
}