html,body{
  padding:0;
  margin:0;
  background-color:black;
  position: relative;
}
body {
  overflow-x: hidden;
}
img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#container {
  background-color:grey;
  display:-webkit-box;
  display:flex;
  flex-wrap:wrap;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
          flex-direction:column;
  height:100vh;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  top: 0 !important;
  max-width: 4800px;
  max-height: 500px !important;
}
#scroll-container {
  height: 100vh;
}
.name {
  position: absolute;
  bottom: 50px;
  right: 50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
 
}
.name a {
  color: white;
  display: block;
  text-align:center; 
  font-size: 30px;
}

.module{
  width: 700px;
  height:100%;
  display: -webkit-box;
  display: flex;
  box-shadow: -1px 0px 25px 5px rgba(0,0,0,0.5);
}

p {
  position: fixed;
  font-size: 30px;
  color: white;
  -webkit-transform: translate(100px, 270px);
          transform: translate(100px, 270px);
  background-color: rgba(235, 159, 48,1);
  width: 180px;
  height: 100px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);

}