    /* style the navbar like steam */
    nav {
        background-color: #171a21;
        color: #fff;
        padding: 10px 0;
        /* make the navbar sticky at the top and when you scroll down it dissapears and when you scroll up it reapears */
        position: sticky;
        top: 0;
        z-index: 1;

    }
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;



    }
    .nav-logo {
        width: 100px;
    }
    .nav-links {
        flex: 1;
        text-align: center;
    }
    .nav-links ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
    }
    .nav-links ul li {
        padding: 0 10px;
    }
    .nav-links ul li a {
        text-decoration: none;
        color: #fff;
    }
    .nav-search {
        flex: 1;
        text-align: right;
    }
    .nav-search input {
        padding: 5px;
        border: none;
        border-radius: 5px;
    }
    .nav-login {
        flex: 1;
        text-align: right;
    }
    .nav-login a {
        text-decoration: none;
        color: #fff;
        padding: 5px 10px;
        border: 1px solid #fff;
        border-radius: 5px;
    }

    body {
        padding: 0;
        margin: 0;
        font-family: "Motiva Sans", Sans-serif;
        overflow-x: hidden;
        background:linear-gradient(120deg, #184151, #1B2838);
    }

    footer {
        background-color: #0c0d10;
        color: #fff;
        padding: 10px 0;
        position: fixed;
        bottom: 0;
        width: 100%;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-links {
        flex: 1;
        text-align: center;
    }
    .footer-links ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
    }
    .footer-links ul li {
        padding: 0 10px;
    }
    .footer-links ul li a {
        text-decoration: none;
        color: #fff;
    }
    .footer-social {
        flex: 1;
        text-align: right;
    }
    .footer-social ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        list-style: none;
    }
    .footer-social ul li {
        padding: 0 10px;
    }
    .footer-social ul li a {
        text-decoration: none;
        color: #fff;
    }

    main {
        height: 90vh;
      color: #fff;
      padding: 10px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .tinder {
      width: 500px;
      margin: 7px;
    }

    .buttons {
      display: flex;
      justify-content: space-between;
      margin: 30px;
    }

    #dislikeBtn {
      background-color: #971941;
      width: 175px;
      height: 75px;
      border: none;
      color: #e0245e;
      font-size: 50px;
      border-radius: 10px;
    }

    #likeBtn {
      background-color: #194d8d;
      width: 175px;
      height: 75px;
      border: none;
      color: #2878da;
      font-size: 50px;
      border-radius: 10px;
    }

    #dislikeBtn:active {
      outline: 3px solid red;
    }
    #likeBtn:active {
      outline: 3px solid #3c85dd;
    }

    img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .cardInfo {
      background: linear-gradient(rgba(0,0,0,1), rgb(10, 6, 42)), url("https://images.unsplash.com/photo-1519680772-3b7b1f3c5f0d?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8Y2FyZCUyMGJhY2slMjBjb2xvciUyMGRvd258ZW58MHx8MHx8&ixlib=rb-1.2.1&w=1000&q=80");
      color: white;
      height: 150px;
      padding: 10px;
    }

    .tinderCards {
        margin: 25px;
        border-radius: 25px;
        overflow: hidden;
        width: 400px;
        position: absolute;
      }

    .tinderCardsContainer{
        height: 600px;
        padding: 25px;
        padding-top: 0;
    }

    .swipeLeft {
        transform: translateX(-500px) rotate(-30deg);
        opacity: 0;
        transition: all .5s ease;
        overflow: hidden;
    }
    
    .swipeRight {
        transform: translateX(500px) rotate(30deg);
        opacity: 0;
        transition: all .5s ease;
        overflow: hidden;
    }

    #reload {
        background-color: transparent;
        border: none;
        color: lightblue;
        font-size: 30px;
        text-decoration: underline;
        position: relative;
        top: 250px;
        left: 100px;
    }
    .cardPrice {
        line-height: .5;
        font-size: 20px;
        font-weight: bold;
    }
    .cardTitle {
        line-height: 1;
        font-size: 25px;
        font-weight: bold;
        margin-top: 5px;
    }

    .nav-logo img {
        height: 50px;
        width: 50px;
    }
