   body {
        height: 100vh;
        margin: 0;
        background-color: black;
        
    }
    .container {
      width: 70%;
      
    }
    .block-center {
    display: grid;
    place-items: center center;
    width: auto;

}

.logo-container {
    display: grid;
    place-items: center center;
    width: auto;
}

.text-container {
    display: grid;
    place-items: center center;
    width: 70%;
}


.logo{
  background: -webkit-linear-gradient(#F4CA2B, #EF8520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}
.logotext-upper{
  background: -webkit-linear-gradient(#eee, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logotext-middle{
  background: -webkit-linear-gradient(#ddd, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logotext-lower{
  background: -webkit-linear-gradient(#bbb, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
    a {
      color:#5DD8B5;
  text-shadow:#2B5E50 0px 0px 8px;
    }
    p {
      word-wrap: break-word;
      word-break: break-word;
      white-space: pre-wrap;
      color: white;

      animation: fadeIn 3s;
      font-family: monospace;
      -webkit-animation: fadeIn 3s;
      -moz-animation: fadeIn 3s;
      -o-animation: fadeIn 3s;
      -ms-animation: fadeIn 3s;
    }

    img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      animation: fadeIn 2s;
      -webkit-animation: fadeIn 2s;
      -moz-animation: fadeIn 2s;
      -o-animation: fadeIn 2s;
      -ms-animation: fadeIn 2s;
      width:70%
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @-moz-keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @-webkit-keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @-o-keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @-ms-keyframes fadeIn {
      0% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }
