@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #EEEEEE;
}

h4 {
  color: #222831;
  font-size: 28px;
}

.section-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#get-user-link {
  border: 2px solid #9BA4B4;
}

input {
  width: 200px;
  height: 32px;
  border-radius: 20px;
  border: none;
  padding: 5px;
  font-family: 'Roboto', sans-serif;
}

#search {
  background-color: #00ADB5;
  border: none;
  border-radius: 20px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  color: #EEEEEE;
  transition: background-color 0.2s ease-out,
  color 0.2s ease-out;
}
#search:hover {
  background-color: #fff;
  color: #222831;
  transition: background-color 0.3s ease-in,
  color 0.3s ease-in;
  text-decoration: underline;
}

article {
  display: flex;
  flex-direction: column;;
}

a {
  text-decoration: none;
  color: #222831;
  cursor: pointer;
}

.section-two {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.div-one {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.div-one p {
  margin: 0;
  padding: 10px;
  background-color: #9BA4B4;
  color: #393E46;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease-out,
  color 0.2s ease-out;
}
.div-one p:hover {
  background-color: #00ADB5;
  color: #EEEEEE;
  transition: background-color 0.3s ease-in,
  color 0.3s ease-in;
}

.div-two {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.div-two details summary{
  margin: 5px 0 15px 0;
  width: 120px;
  height: 28px;
  text-align: center;
  line-height: 30px;
  border-radius: 14px;
  background-color: #9BA4B4;
  color: #393E46;
  cursor: pointer;
  transition: background-color 0.2s ease-out,
  color 0.2s ease-out;
}
.div-two details[open] summary {
  background-color: #00ADB5;
  color: #EEEEEE;
}
.div-two details summary:hover {
  text-decoration: underline;
  transition: background-color 0.3s ease-in,
  color 0.3s ease-in;
}

#search {
  cursor: pointer;
}

#referencesJSON {
  display: flex;
  flex-direction: column;
  gap: 10px
}

#referencesJSON a {
  height: auto;
  padding: 5px;
  text-align: center;
  border-radius: 14px;
  background-color: #9BA4B4;
  color: #393E46;
  transition: background-color 0.2s ease-out,
  color 0.2s ease-out;
}
#referencesJSON a:hover {
  background-color: #00ADB5;
  color: #EEEEEE;
  transition: background-color 0.3s ease-in,
  color 0.3s ease-in;
  text-decoration: underline;
}