/*
    Name: Wenxuan Liu
    Date: 22 March 2020
    This is the style.css page for index.html of my TA welcome page.
*/


body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.5em;
}

main {
  border: 4em solid rgba(165, 207, 212, 0.85);
  border-radius: 2em;
}

footer {
  text-align: center;
}

nav ul {
  background-color: rgba(248, 93, 93, 0.85);
  position: fixed;
  top: 0px;
  border-radius: 2em;
  border-bottom-left-radius: 0em;
  padding: 15px 25px;
}

nav li {
  float: left;
  margin-right: 25px;
  margin-left: 15px;
}

nav a {
  text-decoration: none;
  color: azure;
}

footer a {
  text-decoration: none;
}

#about-me {
  display: flex;
  flex-direction: column;
  background-color: #b9c05a;
}

#self-intro {
  border: 1em solid #b9c05a;
}

#tips {
  background-color: #fab3c1;
  border: 1em solid #fab3c1;
}

#welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(241, 182, 142, 0.85);
}

#welcome div {
  margin-left: auto;
  margin-right: auto;
}

#welcome div img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3em;
  height:12em;
  width: auto;
}

#welcome img {
  height: auto;
  width: 50%;
}