body {
    margin: 0;
    background-color: #ffffff;
    height: 100%;
    font-family: 'Alte Haas Grotesk', sans-serif;
}

header {
    margin-bottom: 10px;
    background-color: #1a3875;
    color: #ffc94d;
    width: 100vw;
    top: 0;
    position: fixed;
}

.navbar {
    display: flex;
    justify-content:space-between;
    width: 90%;
    margin:0 auto;
    gap: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-right: 40px;
}

.nav-links li {
    margin-left: 50px;
    transition: all 0.5s;
}

.nav-links li:hover {
    text-shadow: 0 6px 20px #f7dea4;
    transform: scale(1.05);
}

.nav-links li a {
    color: #ffc94d;
    text-decoration: none;
    font-size:20px;
}

.nav-links.active {
    display: flex;
}

.logo img {
    width: 85px;
}

.burger {
    display: none;
    color: #ffc94d;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

main {
  display:flex;
  flex-wrap:wrap;
  align-content:center;
  justify-content:center;
}

h1 {
    color: #1a3875;
    font-size: 3rem;
    font-weight: 600;
    padding-top: 40px;
    padding-bottom: 20px;
    display: inline-block;
    border-radius: 10px;
    width: 38%;
}

p.login-box-msg {
    color: #1a3875;
    line-height: 1.5;
}

button.btn.btn-primary {
    background-color: #1a3875;
    color: #ffc94d;
  	font-weight:600;
    height: 44px;
}

button.btn.btn-primary:hover {
    color: #1a3875;
    background-color: #ffc94d;
}

footer {
    background-color: #1a3875;
    padding-top: 20px;
    display:flex;
    bottom: 0;
    position: fixed;
    width: 100%;
  	height:4rem;
}

footer p {
    color: #ffc94d;
  	margin:0;
  	font-size: 0.7rem;
  	right:0;
  	bottom:2px;
  	position:absolute;
  	margin-right:5px;
}

@media (max-width: 600px) {
  
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        right: -30px;
        width: 50%;
        margin: 5px;
      	margin-right:0;
        background-color: #1a3875;
        padding: 10px;
      	padding-left: 0;
      	padding-right:20px;
        box-shadow: -3px 0px 6px 0px #0d1d3c;
        border-radius: 9px;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .burger {
        display: block;
    }
  
  h1 {
    font-size:26px;
    padding-top:0;
    top:150px,
  }
  
  .card {
  	margin-right:15px;
    margin-left:15px;
  }
}