/* Custom Styling Overrides */
body {
  text-align: center;
  font-family: 'Source Sans Pro', sans-serif;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 600;
  color:white;
  background-image: url('../img/architect-opening-blueprint.jpg');
}



h1 {
  
  font-size: 2.6rem;
  font-weight:bold;
  margin-bottom:20px;
}

@media (max-width: 561px) {
  h1 {
  
    font-size: 1.8rem;
  }
}

h2,
h3,
h4,
h5,
h6 {
  
  font-weight: bold;
}

header{

  padding:50px;
}

img{
  width:100%;
  margin-bottom:50px;
}

a{
  text-decoration: none;
  color: #fff;
  font-size:20px;
}

#home{
  margin-bottom: 30px;
}


#cookieNotice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 95vw;
  background-color: black;
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 6px 6px 15px -3px black;
  z-index: 9999;

  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cookieNotice.show {
  visibility: visible;
  opacity: 1;
}

#cookieNotice .content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (min-width: 992px) {
  #cookieNotice .content-wrap {
    flex-wrap: nowrap;
  }
}

#cookieNotice .msg-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  #cookieNotice .msg-wrap {
    max-width: 60%;
    text-align: left;
  }
}

#cookieNotice .msg-wrap h4 {
  flex-basis: 100%;
  font-size: 16px;
  text-transform: uppercase;
}

#cookieNotice .msg-wrap p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}

#cookieNotice .msg-wrap a {
  color: white;
  text-decoration: underline;
}
.btn-wrap {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .btn-wrap {
    margin-left: auto;
    margin-top: 0;
  }
}

.btn-wrap button {
  background-color: white;
  border: none;
  color: black;
  text-transform: uppercase;
  font-size: 16px;
  border-radius: 10px;
  padding: 6px 20px;
  font-weight: 600;
  cursor: pointer;
}