@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  height: 100vh;
  /* overflow: hidden; */
  background: radial-gradient(
    circle,
    rgba(255, 251, 227, 1) 0%,
    rgba(255, 253, 243, 1) 100%
  );
}

img {
  display: block;
  width: 100%;
  object-fit: contain;
}

.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content {
  background-color: white;
  box-shadow: 0 0 5px 4px rgb(0, 0, 0, 0.36);
  width: 100%;
}

.container h2 {
  margin: 10px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.row > * {
  flex: 0 0 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.profil {
  max-width: 400px;
  max-height: 300px;
}
.profil > img {
  width: auto;
  height: 100%;
  box-shadow: 0 0 3px 0 rgb(0, 0, 0, 0.36);
  border-top-left-radius: 3%;
  border-top-right-radius: 3%;
}

.legal {
  /* min-height: 200px; */
}

.progress {
  flex-direction: column;
  min-height: 200px;
  margin-top: 0;
}

a {
  color: darkgrey;
  text-transform: uppercase;
}
a:hover {
  text-decoration: underline;
}
