*{ margin: 0; padding: 0; box-sizing: border-box; 
  font-family: 'Montserrat', sans-serif;
  background-color: #404040;
}

 
 .main_body{
  width: 100%; height: 100vh; 
  background-repeat: no-repeat;
  background-size: 100% 100%; 
  display: flex; 
  justify-content: center;
  align-items: center;
 }
 
 .center_body{
  width: 90%;
  height: 90%;
  background-image: url('images/background.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex; 
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
 }
 
 .center_body h1{
  font-size: 100px;
  color: white;
  letter-spacing: 5px;
  font-weight: 700;
  text-shadow: 10px 9px 3px #74b9ff;
  transition: all 1s linear;
 }
 
 .center_body h2{
  color: white;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
 }
 
 .center_body p{
  color: white;
  font-weight: 400;
  text-align: center;
  margin: 20px auto;
 }
 
 .center_body a{
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  color: blue;
  background: white;
  padding: 15px 30px;
  box-shadow: 5px 4px 15px -5px #0046d5;
  border-radius: 40px;
  transition: all 0.5s linear;
 }
 
 .center_body:hover h1{
  text-shadow: 9px 6px 3px #b2bec3;
 }
 
 .center_body:hover a{
  color: white;
  background: blue;
 
 }
 .column{
 float:left ;
 width: 33.33%;
 padding: 5px;
 }
 .row::after{
  content: "";
  display: table;
  clear: both;
 }


 .mySlides {display:none}
.w3-left, .w3-right, .w3-badge {cursor:pointer}
.w3-badge {height:13px;width:13px;padding:0}