/* CSS Variables */
:root {
  --normal-font: 400;
  --bold-font: 600;
  --bolder-font: 900;
  --primary-color: #0652dd;
  --secondary-color: #ea2027;
  --line-height: 1.7rem;
  --transition: 0.4s ease-in;
}

/* Smooth scroll effect */
html {
  scroll-behavior: smooth;
}

/* Resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: var(--transition);
}

 body {
  font-family: "Roboto", sans-serf;
  text-align:center;
  margin:auto;
}

.container{max-width:1200px;margin:auto;padding:5% 0;}

h1{color:#1b3c72;font-size:55px;font-weight:900;}


.contact{
    max-width:380px;
    margin:50px auto;
    padding:30px;
    background:#f7f7f7;
    border-radius:20px 20px 0 0 ;
}
.contact strong{font-size:25px;}
.contact a{font-size:20px;display:block;margin:10px auto;}


ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
  color:#1b3c72;
}

a:hover {
  color: var(--secondary-color);
}