body {
  background: rgb(245,245,245);
    color: #575F7D;
    font-size: 17px;
    font-weight: lighter;
    font-family: 'Roboto', sans-serif;
}

h1 {
  color: #408E91;
  font-size: 32px;
  font-weight: 900;
}

h2 { 
  color: #E49393;
  font-size: 20px;
  font-weight: lighter;
  font-weight: 700;
}

img {
  width: 100px;
  border-radius: 40%;
}

a {
  color: #6B71E1;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  font-size: 16px;
}

a:hover {
  color: brown;
}

ul {
  list-style: none;
  padding-left: 0;
}
  
li {
  display: inline;
  padding: 10px;
}

i {
  font-size: 50px;
  color: rgb(210, 210, 210);
}

i:hover {
  color: black;
}

.container {
  width: 1000px;
  margin: 40px auto;
}

@media (max-width: 960px) {
  .container {
    width: 700px;
  }
}
@media (max-width: 720px) {
  .container {
    width: 500px;
  }
}
@media (max-width: 540px) {
  .container {
    width: 300px;
  }
}

.card-white {
  background-color: white;
  border-radius: 90px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 35px;
  margin: 35px auto;
  text-align: center;
}

.btn-blue {
  background-color: #245953;
  color: white;
  padding: 15px 20px;
  border-radius: 25px;
}

.btn-blue:hover {
  background-color: rgb(100, 100, 100);
  color: white;
}
