body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 100px 0px 100px;
  height: 20vh;
  color: #ff686b;
}

header h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 44pt;
  color: white;
}

header h3 {
  font-family: 'Akaya Telivigala', cursive;
  color: white;
}

main {
  position: relative;
}

#main-background {
  background: linear-gradient(0.39turn, #ff006e, #ff686b);
  fill: white;
}

.svg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 65vh;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 7vw;
  margin-top: 5vh;
}

.container .links {
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-shadow: -10px 8px 0px #ffffff52;
          box-shadow: -10px 8px 0px #ffffff52;
  background: white;
  padding: 1px 20px 1px 20px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 20px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.container .links:hover {
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-box-shadow: 0px 2px 5px #310f0f31;
          box-shadow: 0px 2px 5px #310f0f31;
}

.container .links #svg {
  fill: #ff686b;
}

.container .links p {
  padding-left: 10px;
  color: #ff686b;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 100px;
  color: #ff686b;
  font-family: 'Akaya Telivigala', cursive;
}

#ex-main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3fr 7fr;
      grid-template-columns: 3fr 7fr;
}

.left-column {
  display: -ms-grid;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  -ms-grid-rows: 2fr 9fr;
      grid-template-rows: 2fr 9fr;
  height: 100vh;
  width: 30vw;
  font-family: Arial, Helvetica, sans-serif;
}

.left-column h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 44pt;
  color: #ff006e;
  padding-top: 20px;
}

.left-column #nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  padding-top: 50px;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.left-column #nav .link1 {
  width: 50%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link1 a {
  border-top-right-radius: 8px;
}

.left-column #nav .link1:hover {
  width: 48%;
}

.left-column #nav .link2 {
  width: 60%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link2 a {
  border-top-right-radius: 8px;
}

.left-column #nav .link2:hover {
  width: 58%;
}

.left-column #nav .link3 {
  width: 70%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link3 a {
  border-top-right-radius: 8px;
}

.left-column #nav .link3:hover {
  width: 68%;
}

.left-column #nav .link4 {
  width: 80%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link4 a {
  border-top-right-radius: 8px;
}

.left-column #nav .link4:hover {
  width: 78%;
}

.left-column #nav .link5 {
  width: 90%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link5 a {
  border-top-right-radius: 8px;
}

.left-column #nav .link5:hover {
  width: 88%;
}

.left-column #nav .link6 {
  width: 100%;
  height: 13%;
  -webkit-transition: width 0.1s ease-in;
  transition: width 0.1s ease-in;
}

.left-column #nav .link6 a {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.left-column #nav .link6:hover {
  width: 98%;
}

.left-column #nav a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: white;
  background: #ff006e;
}

.right-column {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 200px 4fr 200px;
      grid-template-rows: 200px 4fr 200px;
  width: 70vw;
  font-family: Arial, Helvetica, sans-serif;
}

.right-column span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 100px;
}

.right-column span a {
  width: 60px;
  height: 60px;
  background: #ff006e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100px;
}

.right-column span svg {
  width: 50%;
  height: 50%;
  fill: white;
}

.right-column .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: hidden;
}

.right-column .center .profile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.right-column .center .example-container {
  width: 80%;
}

.right-column .center .profile {
  display: block;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background: url("../img/profile.jpeg");
  background-size: cover;
  border: 6px solid black;
}

.right-column .center .example1 {
  display: block;
  height: 500px;
  width: 100%;
  margin-top: 100px;
  background: url("../img/example11.png");
  background-size: cover;
}

.right-column .center .example2 {
  display: block;
  height: 500px;
  width: 100%;
  margin-top: 100px;
  background: url("../img/example22.png");
  background-size: cover;
}

.right-column .center .example3 {
  display: block;
  height: 800px;
  width: 100%;
  margin-top: 100px;
  background: url("../img/example3.jpg");
  background-size: cover;
}

.right-column .center .example4 {
  display: block;
  height: 800px;
  width: 100%;
  margin-top: 50px;
  background: url("../img/example4.jpg");
  background-size: cover;
}

.right-column .center a {
  color: #ff006e;
  padding: 0px 6px;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.right-column .center a:hover {
  color: white;
  padding: 5px 10px;
  background: #ff006e;
}

.right-column .center h2 {
  font-size: 22pt;
  letter-spacing: 10px;
}

.right-column .center p {
  letter-spacing: 20px;
}

.right-column .center .bg-text {
  letter-spacing: 1px;
  line-height: 30px;
}

.right-column .center .bg-text a {
  color: #ff006e;
  padding: 0px 6px;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.right-column .center .bg-text a:hover {
  color: white;
  padding: 5px 10px;
  background: #ff006e;
}

.right-column #ex-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
  padding-left: 100px;
}

.right-column #ex-footer a {
  -webkit-box-shadow: 0px 0px 2px #0000003a;
          box-shadow: 0px 0px 2px #0000003a;
  border-radius: 8px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: black;
}
/*# sourceMappingURL=stylesheet.css.map */