body {
  background-color: black;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  margin: 0;
}

* {
  text-decoration: none;
}

a
{
  cursor: pointer;
}

p
{
  color: white;

  font-family: Montserrat;
  font-size: 1.5em;
  font-weight: 500;
}

html
{
  scroll-behavior: smooth;
}

.dogu2
{
  width: 100%;
  height: 500px;

  background-color: #380c36;

  display: flex;
  justify-content: center;
  align-items: center;
}

.dogu2 .article
{
  width: 200px;
  height: 300px;

  border-radius: 30px;
  background-color: #1003148f;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin: 0 20px;

  padding: 0 15px;
}

.dogu2 .article img
{
  margin-top: -100px;
  width: 80%;
}

.dogu2 .article p
{
  height: 50%;

  color: rgb(243, 243, 243);
  text-align: center;
}

.dogu
{
  width: 100vw;
  height: 100vh;
  display: flex;

  background-color: rgb(27, 3, 27);
}

.dogu .character img
{
  margin: auto;
}

.dogu .character
{
  width: 50%;
  height: 100%;

  display: flex;

  z-index: 1;
}

.dogu .content
{
  width: 50%;
  height: 100%;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  z-index: 1;
}

.dogu .content div
{
  justify-content: center;
  align-items: center;

  display: flex;
}

.dogu .content img
{
  width: 100%;
}

.dogu .content .description
{
  width: 80%;

  margin: 70px 0;

  border-radius: 25px;
  padding: 10px;

  background-color: rgb(224, 161, 66);
}

.dogu .content a
{
  text-align: center;

  color: rgb(231, 231, 231);
  font-family: Montserrat;
  font-size: 1.5em;
  font-weight: 500;

  padding: 10px 20px;
  border-style: solid;
  border-radius: 15px;
  border-width: 1px;
  margin: 0px 10px;
}

.dogu .content a:hover
{
  border-style: none;

  color:#1e0626;

  animation-name: specialBg;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

.dogu video 
{
  width: 100%;
  height: 100%;

  position: absolute;

  margin: auto auto;

  z-index: 0;
  opacity: 0.2;

  object-fit: cover;

  transition: 1s;
}

#doguVideoEnabled
{
  z-index: 2;
  opacity: 1;
}

.dogu .videoCloser
{
  position: absolute;
  transform: translateX(90vw) translateY(50px);

  z-index: 3;
  cursor: pointer;

  background-color: red;
  border-radius: 15px;

  width: 50px;
  height: 50px;

  text-align: center;
  justify-content: center;
  align-items: center;

  display: flex;
}

#videoCloserFalse
{
  display: none;
}

.dogu .content p
{
  text-align: center;
}

.hero
{
  background-image: linear-gradient(to top right, rgb(194, 104, 1), #1e0626, #1e0626, #1e0626, rgb(194, 104, 1));
  background-color: #1e0626;
  background-size: 400%;

  width: 100vw; 
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: row;
  
  animation: heroBg 20s ease infinite;
}

@keyframes heroBg
{
  0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.hero > div
{
  width: 50%;
  height: 100%;
}

.hero > .content
{
  height: 100%;
  display: flex;

  justify-content: center;
  flex-direction: column;
}

.hero .content div
{
  max-width: 100%;
  padding: 50px;
}

.contact
{
  max-width: 100%;
  padding: 30px;

  margin: 0 auto;
  justify-content: center;
  display: flex;
  
  background-color:#380c36;
}

.contact a
{
  text-align: center;

  color: rgb(231, 231, 231);
  font-family: Montserrat;
  font-size: 1.5em;
  font-weight: 500;
}

.hero .content .portfollio
{
  margin: 0 auto;
  justify-content: center;
}

.hero .content .portfollio a
{
  text-align: center;

  color: white;
  font-family: Montserrat;
  font-size: 2em;
  font-weight: 500;

  padding: 10px 20px;
  border-style: solid;
  border-radius: 15px;
  border-width: 1px;
  margin: 0px 10px;
}

.hero .content .portfollio a:hover
{
  border-style: none;

  color:#1e0626;

  animation-name: specialBg;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

@keyframes specialBg
{
  from { background-color: yellow; }
  to { background-color: purple; }
}

.contact a:hover
{
  animation-name: specialText;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

.hero .content .description
{
  margin: 0 auto;
  max-width: 70%;

  background-color: #1003148f;
  border-radius: 15px;
  padding: 50px;

  transition: 0.3s;

  z-index: 1;
}

.hero .content .description:hover
{
  border-radius: 30px;
}

.hero > .content > .description p
{
  color: white;
  font-family: Montserrat;
  font-size: 2em;
  font-weight: 500;
  text-align: center;
  margin: auto;

  transition: 1s;
}

.hero .content .description a, .dogu2 a
{
  animation-name: specialText;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1s;
}

@keyframes specialText
{
  from { color: purple; }
  to { color: yellow; }
}

.hero > .title
{
  display: flex;
  justify-content: center;
}

.hero .title img
{
  margin: auto;

  min-width: 400px;
  min-height: 400px;
  max-width: 60%;
  max-height: 60%;
}

.hero > .title > h1
{
  color: white;
  font-family: Montserrat;
  margin: auto;
  font-size: 6em;
  font-weight: 500;

  z-index: 1;
}

.body
{
  width: 100%; 
  height: 100%; 
}

@media only screen and (max-width: 1600px) {
  .dogu
  {
    flex-direction: column;
    height: 1000px;
  }

  .dogu .content img
{
  width: 70%;
}

  .dogu video
  {
    height: 1000px;
  }

  .dogu .character
  {
    display: none;
  }

  .dogu .content
  {
    width: 100%;
    height: 100%;
  }

  .dogu .content .description
  {
    width: 60%;
  }
}

@media only screen and (max-width: 1024px) {
  .hero
  {
    flex-direction: column;
    height: 900px;
  }

  .dogu .content img
{
  width: 80%;
}

  .hero > div
  {
    width: 100%;
  }
  
  .hero > .title > h1
  {
    font-size: 4em;
  }

  .hero > .content > p
  {
    font-size: 3em;
    padding: 10px;
  }

  .hero
  {
    padding-bottom: 100px;
  }

  .hero .title img
  {
    min-width: 350px;
    min-height: 350px;
  }
}

@media only screen and (max-width: 660px) {
  .dogu .content img
  {
    width: 500px;
    max-width: 100%;
  }

  .dogu2
  {
    flex-wrap: wrap;

    height: 1000px;
  }

  .dogu2 .article
  {
    margin: 0 20px;
  }
}

@media only screen and (max-width: 539px) {
  .dogu2
  {
    padding-top: 50px;
    height: 1300px;
  }
}

@media only screen and (max-width: 500px) {
  .dogu .videoCloser
  {
    transform: translateX(80vw) translateY(50px);
  }

  .hero .content .portfollio
  {
    display: flex;
    flex-direction: column;
  }

  .hero .content .portfollio a
  {
    margin-top: 30px;
  }

  .hero .title img
  {
    min-width: 300px;
    min-height: 300px;
  }

  .hero
  {
    height: 110vh;
  }

  .hero .content .description
  {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 480px) {
  .dogu2
  {
    height: 1300px;
  }
}

@media only screen and (max-width: 340px) {
  .hero .title img
  {
    min-width: 200px;
    min-height: 200px;
  }

  .contact a
  {
    font-size: 1.1em;
  }

  .hero .content div
  {
    padding: 0;
  }
}