@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #14213d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  color: rgb(50, 50, 50);
}

.user-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 2.5em;
}

.form-container{
  max-width: 800px;
  margin: 0 1em;
}

#search {
  border-radius: 10px;
  border: none;
  padding: 1em 2em;
  background-color: #fca311;
  /* width: 100%; */
  min-width: 700px;
}

#search:focus {
  outline: none;
}

#search::placeholder {
  color: rgb(58, 58, 58);
  font-weight: bold;
}

i {
  position: absolute;
  left: 210px;
}

.card {
  width: 100%;
  max-width: 700px;
  padding: 2.5em 2.5em;
  background-color: #fca311;
  color: #14213d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.card .nouser {
  margin-left: 250px;
  margin-right: 250px;
  text-align: center;
  align-items: stretch;
  width: 100%;
}


li {
  list-style: none;
}

.home {
  text-decoration: none;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding: .6em 2em;
  border-radius: .5em;
  background-color: #fca311;
  color: black;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

img { 
  height: 250px;
  width: 250px;
  border-radius: 10em;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 2em ;
}


.error-card {
  color: rgb(183, 0, 0);
  font-weight: 700;
}

li span {
  font-weight: 700;
}

.profile-card {
  display: flex;
  justify-content: center;
}