@import 'button.css';
@import 'form.css';

button.btn-primary:focus, button.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}

html {
    position: relative;
    min-height: 100%;
  }
  
  body {
    height: 100vh;
    width: 100vw;
    background-color: #ffffff;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    margin: 0px;
  }

  .full-container{
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    background-image: url("../images/bsckground.png"); /* The image used */
    background-color: #cccccc; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  a{
    text-decoration: none;
  }

  ul {
      list-style-type: none;
      margin: 0px;
  }

  .row {
      width: 100%;
      margin: 0px;
  }
  
  a:hover, a:focus, a:active{
    text-decoration: none;
  }