@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Ubuntu", sans-serif;

    /* font-family: 'Maven Pro', sans-serif; */

}
body{
    height: 100vh;
    background: #000;
    

}
body::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ),url("../images/4xx.jpg");
  
  background-position: center center;
  background-size: cover;
  
  /* background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ),url("..img/xxx/cp1.jpg"); */
 
  /* background-position: center; */
  /* background-size: 100%; */
  background-repeat:no-repeat;
}


/* nav{
  position: fixed;
  z-index: 1;
  padding: 25px 60px;
}
nav a img{
  width: 160px;
} */

.wrapper{
    height: 100vh;
}
.myColor{
   background-color: #dc3545;  
}
.myShadow{
    box-shadow: 0 5px 10px #111;
}
.myBtn{
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
    /* background-image: linear-gradient(to right,  #f0717e 0%,  #dc3545 100% ); */
    border: none;
}
.myBtn:hover{
    background-image: linear-gradient(to right,   #dc3545 0%,  #dc3545 100% );

}
.myHr{
    height:2px;
    border-radius: 100px;
}
.myLinkBtn{
    border-radius: 100px;
    width: 100%;
    border: 2px solid #fff;
}
@media(max-width: 720px){
    .wrapper{
        margin: 2px;
    }
}


.navbar-brand img{
    height: 3rem;
    
  }