/*
  Name: Shawn Cho
  Date: 3.20.2021

  This is the css for Shawn Cho's TA website.
*/

body {
  background-color: white;
  font-family: "Helvetica", sans-serif;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}

h1 {
  font-family: 'Pacifico', serif;
  font-size: 100px;
  text-align: center;
}

#contact {
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 {
  font-size: 50px;
}

p, li {
  font-size: 30px;
}

#intro, #tips {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#tips {
  flex-direction: column;
}

#intro > img {
  width: 25%;
  height: 15%;
  object-fit: cover;
}

#tips > p {
  padding-left: 10px;
}

.textbox{
  margin: 3%;
  border-style: groove;
  border-width: 7px;
  border-color: black;
  padding: 10px;
}

.fa {
  border-radius: 50%;
  margin: 0 3px;
  padding: 15px;
  font-size: 20px;
  width: 20px;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
  opacity: 0.7;
}

.fa-linkedin {
  background: #007bb5;
  color: white;
  margin-left: 10px;
}

.fa-envelope {
  background: #010102;
  color: white;
}

footer {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: black;
  color: white;
}