@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=latin-ext,vietnamese');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
   
  html {
    font-size: 62.5%;
 
  }
  a:link {
    color:#000000;
    text-decoration: none;
  }
  a:hover {
    /* color:#F00; */
    text-decoration: none;
  }
  a:active {
    /* color:#F00; */
    text-decoration: none;
  }
  a:visited {
    color: black;
    text-decoration: none;
  }
  a { outline: none; }
 
  
.index {
display: flex;
flex-direction: row;
  height: 100vh;
  width: 100vw;
  text-align: center;
  align-items: center;
  align-content: center;
   justify-content: center;
  
}
.element{
    margin:20px;
    height: 150px;
    top:0px;
     transition: 0.4s ease-in-out;
}
.element:hover{
  transform: scale(1.2);
 
}
   
body {
    font-family: "Montserrat";
    line-height: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    font-weight: 500;
    font-size: 1.6rem;
}