:root {
  --bs-primary: #004990;
  --bs-secondary: #d0131a;
}

html,
body {
  height: 100vh;
}

html {
  overflow: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: url(../images/bg.png) no-repeat center center fixed;
  background-size: cover;
}

.main-container {
  background: url(../images/bg_women.png) no-repeat fixed;
  background-size: 115vh;
  background-repeat: no-repeat;
  background-position: right bottom;
}

/**
* Buttons
**/
.btn {
  color: #fff;
  border: 0px;
  border-radius: 0.3rem;
  padding: 0.7rem 1.6rem;
  transition: all 0.1s;
  font-weight: 600;
}

.btn,
.btn:hover,
.btn:active,
.btn:visited {
  transition: opacity 1s;
}

.btn:hover,
.btn:active,
.btn:visited {
  opacity: 0.7;
}

.btn:active:focus,
.btn:visited:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
}

/* On screens that are 992px or less, set the background color to blue */
/* @media screen and (max-width: 1024px) {
  .main-container {
    background-size: 78vh;
  }
} */

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 1024px) {
  .main-container {
    background-size: 48vh;
  }
}
