/* @import url(https://fonts.googleapis.com/css?family=Fjalla+One); */

@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@600;700&display=swap');


html {
    height: 100%;
    /*scrollbar-color: #87ceeb #ff5621;*/
}

body {
    /* font-family: "Fjalla One", sans-serif; */
    font-family: 'Dosis', sans-serif;
    /* background: linear-gradient(to bottom, #ea6e08 0%, #4A5766 100%); */
    background: #31031e;
}

.container {
    transform: translate(-50%, -50%);
    top: 5%;
    left: 50%;
    display: block;
    position: relative;
    max-width: 550px;
    width: 500px;
}

.layout-grid {
    display: grid;
    /* grid-template-columns: 40% 60%; */
    max-width: 2000px;
    margin-top: 10px;
    width: 100%;
  }
  
  .sidebar {
    margin-top: 11px;
  }
  
  .content {
    margin-top: 0px;
    padding: 16px;
  }



.button {
    float: left;
    position: relative;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    color: mediumturquoise;
    font-size: x-large;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    letter-spacing: 3px;
}

    .button span {
        transform: skew(-10deg);
        display: block;
        float: left;
        text-shadow: #533d4a 1px 1px, #533d4a 2px 2px, #533d4a 3px 3px, #533d4a 4px 4px;
    }

h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 900;
    margin: 0;
    line-height: 80px;
    letter-spacing: 3px;
}

.title {
    transform: translateX(-50%) rotate(-5deg);
    display: block;
    float: left;
    left: 50%;
    position: relative;
}

    .title span {
        transform: skew(-5deg);
        display: block;
        float: left;
        text-shadow: #533d4a 1px 1px, #533d4a 2px 2px, #533d4a 3px 3px, #533d4a 4px 4px, #533d4a 5px 5px, #533d4a 6px 6px;
        min-width: 10px;
        min-height: 10px;
        position: relative;
    }

    .title:nth-child(1) {
        color: #ff6a00;
    }

    .title:nth-child(2) {
        color: greenyellow;
    }

    .title:nth-child(3) {
        color: #f1c83c;
    }

    .custom-bullet {
        position: relative;
        padding-left: 30px; /* space for the bullet */
        text-indent: 0px; /* pull first line bullet back */
        line-height: 1.5;
    }

    .custom-bullet::before {
        content: "●";       /* the bullet symbol (large dot) */
        position: absolute;
        left: 0;
        top: 0;
        font-size: 20px;    /* make it bigger */
        line-height: 1.5;   /* vertically center it with text */
    }