@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
*{
    font-family: "Quicksand", sans-serif !important;
  }

@font-face {
  font-family: 'CircularStd';
  font-weight: 400;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Book.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 500;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Medium.otf') format('opentype');
}
@font-face {
  font-family: 'CircularStd';
  font-weight: 700;
  font-style: normal;
  src: local('CircularStd'), url('CircularStd-Bold.otf') format('opentype');
}
.codemail{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  width: 25%;
}
.infoButtons{
  transition: 0.5s !important;
} 

.infoButtons:hover{
background: #af2322 !important;
color:#fff !important;
}

@media screen and (max-width:400px){
  .codemail{
    width: 100%;
  } 
}