@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,700");
body {
  font-family: "Maven Pro", sans-serif;
  padding-top: 10px;
}
html, body {
  height: 100%;
  padding:0;
  margin:20px;
 }
a, a:hover, a:focus, a:active {
  text-decoration: none !important;
  color: inherit;
}
.custom-btn {
    background: #eee;
    color: #5b5b5b;
    font-weight: bold;
    border-radius: 50px;
    padding: 5px 30px;
    line-height: normal;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .custom-btn1 {
    font-size: 20px;
  }
  .custom-btn2 {
    font-size: 10px;
  }
  .custom-btn:hover {
    color: #ffc200;
  }
  .custom-btn.custom-btn-bg {
    background: #474559;
    color: #ffffff;
  }
  .custom-btn.custom-btn-bg:hover {
    background: #ffc200;
    color: #ffffff !important;
  }
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .container{
    margin:10px;
  }
  
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {  
  .container{
    margin:8px;
  }
} 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .container{
    margin:7px;
  }
  
} 
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .container{
    margin:5px;
  }
  
}
  /* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .container{
    margin:2px;
  } 
}