body {
  background-color: #222831;
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #DFD0B8;
}

h1, h2, h3 {
  font-family: 'Google Sans', 'Montserrat', sans-serif;
  color: #DFD0B8;
}

a {
  text-decoration: none;
  color: #948979;
}

a:hover {
  color: #DFD0B8;
}

img {
  border-radius: 50%;
}

ul {
  list-style: none;
  padding-left: 0;
}

div {
  width: auto;
}

.container {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
}

.card-white {
  background-color: #393E46;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 30px;
  margin-bottom: 20px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

#header-card h1 {
  text-align: center;
  color: #DFD0B8;
}

#image-div img {
  border-radius: 50%;
  margin-top: 10px;
  width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .container {
    max-width: 700px;
  }
}

@media (max-width: 720px) {
  .container {
    max-width: 500px;
  }
}

@media (max-width: 540px) {
  .container {
    max-width: 300px;
  }
}
