
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-1692px, 0, 0); /* The image width */
  }
}
body{
    margin-top: 0;
}

.Scroller {
    background: url("Assets/Image/Background/Scroller.png");
    background-size: contain;
    width: 5760px; /* The image width times 3 */
    animation: slide 60s linear infinite;
    position:fixed;
    padding:0;
    margin:0;
    top:0;
    left:0;
    height: 100%;
    z-index: -1;
}

@font-face {
    font-family: 'YourFontName'; /*a name to be used later*/
    src: url('http://domain.example/fonts/font.ttf'); /*URL to font*/
}

.mainBody{
    max-width: 80%;
    margin: 0 auto;
}

table{
    min-width: 100%;
    border-collapse: collapse;
    margin-top: 0%;
    margin-bottom: 100px;
}

.footer_table{
    min-width: 80%;
    border-collapse: collapse;
    margin: 10%;
    margin-top: 0%;
    margin-bottom: 100px;
}

th{
    text-align: left;
    margin-bottom: 0px;
    padding-top: 20px;
}
td{
    text-align: left;
    margin-bottom: 0px;
}

@keyframes ScaleFromNothing {
  from {scale: 0;}
  to {scale: 1;}
}

.portfolio_piece{
    transition: all 250ms;
    max-width: 50%;
    min-width: 50%;
    min-height: 100%;
    display:inline;
    float:left;
    outline: 2px solid black;
    text-align: center;
    padding: 0%;
    background-color: white;
    animation-name: ScaleFromNothing;
    animation-duration: 0.3s;
}
/* 
.portfolio_piece:hover{
    scale: 1.1;
} */


.portfolio_title{
    transition: all 250ms;
    display:inline;
    float:left;
    outline: 2px solid black;
    text-align: center;
    padding: 0%;
    background-color: white;
    animation-name: ScaleFromNothing;
    animation-duration: 0.3s;
    border-collapse: collapse;
    margin-top: 0%;
    margin-bottom: 0px;
    max-width: 100%;
    min-width: 100%;
    line-height: 100px;
}

h2{
    margin-bottom: 0px;
}

.small_text {
    font-size: medium;
}

.angledButton {
    padding: 10px 20px;
    padding-right: 80px;
    padding-left: 80px;
    border: unset;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    color: white;
    z-index: 1;
    background: #535398;
    position: relative;
    font-size: 32px;
    transition: all 250ms;
    overflow: hidden;
    clip-path: polygon(
        60px 0%,
        100% 0%,
        calc(100% - 60px) 100%,
        0% 100%
    );
    cursor: pointer;
}

.angledButton::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #393968;
    z-index: -1;
    transition: all 250ms
}

.angledButton:hover {
    color: #e8e8e8;
    scale: 1.1;
}

.angledButton:hover::before {
    width: 100%;
}

header {
    position: sticky;
    top: 0;
    background-color: #9D3B52;
    border: 5px solid #822D5C;
    border-top-width: 0px;
    padding-top: 1px;
    color: white;
    z-index: 100;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    align-self: center;
    padding-top: 20px;
}

.logo {
    margin: auto;
    display: flex;
    max-height: 100px;
}

nav {
    display: inline-block;
    list-style-type: none;
}


footer {
    background-color: #393968;
    border: 5px solid #1d1d33;
    border-bottom-width: 0px;
    padding-bottom: 1px;
    color: white;
    z-index: 100;
    margin-bottom: -200px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}



.screenshot{
    width: 80%;
}

.figure {
    text-align: left;
    margin-left: 10%;
    margin-top: 0%;
    font-size: large;
}




.navul {
  list-style-type: none;
  margin: 0;
  padding-left: 20px;
  padding-bottom: 2px;
  overflow: hidden;
}

.navul li {
  float: left;
  text-decoration: none;
}
.navul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
    padding-top: 3px;
    padding-bottom: 3px;
}

.navli {
    background-color: #393968;
    border: 5px solid #1d1d33;
    margin-left: 10px;
    color: white;
    font-size: 20px;
}
.navli:hover {
    background-color: #1d1d33;
    border: 5px solid #393968;
    margin-left: 10px;
    color: white;
    font-size: 20px;
}

.footerLink {
    color: red;
}


.blueBox {
    background-color: #393968;
    border: 5px solid #1d1d33;
    margin: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    padding: 10px;
    text-align: center;
}
.pinkBox {
    background-color: #9d3b52;
    border: 5px solid #822d5c;
    margin: 100px;
    margin-top: 0px;
    margin-bottom: 0px;
    color: white;
    padding: 10px;
    text-align: center;
}



.changeList {
    text-align: left;
}