* {
    width: 100%;
    height: 100%;
}

html, body {
    width: 100%;
    height: 100%;

    overflow-y: hidden;
    overflow-x: hidden;

    padding: 0px;
    margin: 0px;

    box-sizing: border-box;

    background-color: black;
}

body > div {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body > div > h1,p {
    padding-right: 100px;
    padding-left: 100px;
}

body > div > h1 {
    color: rgb(193, 196, 0);
    font-size: 50px;

    text-align: center;
}


body > div > p {
    width: 80%;
    color: white;
    font-size: 30px;
    text-align: justify; 
}

body > div > p > span {
    display: inline-block;
    width: 100%;
    color: rgb(193, 196, 0);
    font-size: 30px;
    text-align: right;
}


.kaushan-script-regular {
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  .dekko-regular {
    font-family: "Dekko", cursive;
    font-weight: 400;
    font-style: normal;
  }


  @media screen and (max-width: 768px) {
    body > div {
        height: auto;
    }
    body > div > h1 {
        text-align: center;
        padding: 10px;
        font-size: 30px;
    }

    body > div > p {
        margin: 10px;
        width: 80%;
        font-size: 20px;
    }

}