/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap');
:root {
  --bgColor: #ffffe6;
  --accentColor: #a71212;
  --font: 'Roboto Slab', serif;
}

body{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--bgColor);
  margin: 0px;
  padding-left: 5px;
  padding-right: 5px;
}

#profilePhoto{
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 3px solid var(--accentColor);
}

#name{
  color: #333;
  font-size: 1.5rem;
  line-height: 1.25;
  font-family: var(--font);
  width: 100%;
  margin: 30px 0;
  text-align: center;
  text-decoration: none;
  font-style: italic;
}

#icons{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.icon{
  padding-left: 10px;
  padding-right: 10px;
  transition: .25s ease-in-out;
}
.icon:hover{
    opacity: .5;
}

#links{
  max-width: 450px;
  width: 100%;
}
.link{
  display: block;
  background-color: var(--accentColor);
  color: var(--bgColor);
  font-family: var(--font);
  text-align: center;
  margin-bottom: 30px;
  padding: 13px;
  text-decoration: none;
  text-transform: lowercase;
  font-size: 1rem;
  transition: all .25s cubic-bezier(.08,.59,.29,.99);
  border: solid var(--accentColor) 2px;
  border-radius: 50px;
}
.link:hover{
  background-color: var(--bgColor);
  color: var(--accentColor);
  font-style: italic;
}

.section {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.25;
  font-family: var(--font);
  width: 100%;
  margin: 30px 0;
  text-align: center;
  text-decoration: none;
  font-style: italic;
}

.footer {
  color: #333;
  font-size: 1.3rem;
}
