/*
Name: Ann Shan
Date: 03.26.2019

This is the index.html page for my "about me" for CSE 154, Spring 2019.
It handles all the styling for my about me (index.html) page.
*/
@import url('https://fonts.googleapis.com/css?family=Karla');

body {
  background-color: lavender;
  padding-left: 10%;
  padding-right: 10%;
  font-family: 'Karla', sans-serif;
}

h1 {
  text-align: center;
}

.hidden {
  visibility: hidden;
}

.img-container {
  display: flex;
  justify-content: space-around;
  margin: 10px;
}

#fun-stuff-list {
  width: 50%;
}

#cat-pic-container {
  max-width: 50%;
  padding-left: 10%;
  padding-right: 10%;
}

#cat-pic {
  width: 100%;
  max-width: 400px;
}

#profile-pic {
  height: 300px;
}

#fun-stuff-inner {
  display: flex;
  justify-content: space-between;
}

li {
  margin-bottom: 10px;
}
