body {
    background-color: #FFFFF0;
  }
  
.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Use the full viewport height */
  }

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 720px;
  margin: auto;
  text-align: center;
  border-radius: 50px; 
  background-color: white;
  padding-bottom: 20px;
}

.card a {
    margin-right: 10px;
  }

.profile-image {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }

.name {
    color: black;
    font-size: 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: bold;
}

.title {
  color: black;
  font-size: 22px;
  font-family: 'DM Sans', sans-serif;
}

.welcome {
    color: black;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
  }

button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #003363;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

a {
  text-decoration: none;
  font-size: 22px;
  color: black;
}