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

body {
  /* background-color: #EAF6F6; */
  background-color: blue;
  font-family: "Ubuntu", sans-serif;
  margin: 5% 20%;
}

hr {
  background-color: white;
  border-style: dotted none none none;
  border-top-style: dotted;
  border-color: grey;
  border-width: 5px;
  height: 0px;
  width: 5%;
}
span {
  font-weight: bolder;
}

h1 {
  color: #854ee2;
}
h3 {
  color: #139a9a;
}
li {
  line-height: 2rem;
  list-style: square;
}
tr {
  line-height: 1.75rem;
}

div.intro {
  margin: 5% 0;
  display: flex;
}
.intro #info {
  margin: 0 5%;
}
.none li {
  list-style: none;
}

ul li span,
.bold {
  font-weight: bolder;
}
.circle li {
  list-style: circle;
}
a {
  text-decoration: none;
}
button {
  background-color: rgb(57, 162, 214);
  padding: 7px 10px;
  border-radius: 7px;
  box-shadow: none;
  border: none;
}
button a {
  color: white;
  font-weight: bold;
}

div.profiles a img {
  height: 50px;
  padding: 0 12px;
}

table {
  border-collapse: collapse;
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}
tr {
  border-bottom: 1px solid rgb(189, 189, 189);
}

#work-exp tr > td,
th {
  padding: 13px 33px;
}

#projects ol > li {
  padding: 23px 7px 13px;
  border-bottom: 1px solid rgb(212, 204, 204);
}

@media only screen and (max-width: 900px) {
  body {
    margin: 0 5% 0;
  }

  hr {
    visibility: hidden;
    margin: 5% 0;
  }
  div.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  h1#name,
  #info {
    text-align: center;
  }
  div.profiles a img {
    height: 45px;
  }
  table {
    overflow-x: scroll;
  }
  #work-exp tr > td,
  th {
    padding: 7px 20px;
  }
  table {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
    overflow-x: auto;
    white-space: wrap;
  }
}
