* {
    padding: 0%;
    margin:0%;
    box-sizing: border-box
}

body {
    width: auto;
    height: 100vh;
    background:linear-gradient(
        to right,
        rgb(150, 150, 150) 0%,
        rgb(150, 150, 150) 50%,
        rgb(94, 0, 0) 50%,
        rgb(94, 0, 0) 100%
    );
}

@font-face {
    font-family: bigBeautifullFonts;
    src: url(/fonts/Figerona.ttf);
}

h1 {
    font-family: bigBeautifullFonts, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    font-weight: bolder;
}

p {
    font-family: bigBeautifullFonts, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    font-weight: bold;
}

.cp {
    font-family: bigBeautifullFonts, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 10px;
    font-weight: 200;
}

.parent {
    display: grid;
    grid-template-columns: 8vw 42vw 16vw 28vw 6vw;
    grid-template-rows: 16vh 10vh 28vh 14vh 5vh 11vh 16vh;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100vw;
    height: 100vh;
    }
    
    .div1 { 
            grid-area: 2 / 2 / 3 / 3;
            padding: 5px;
          }

    .div2 { 
            grid-area: 3 / 2 / 4 / 3; 
            font-weight: bolder;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
          }

    .div3 { 
            grid-area: 4 / 2 / 5 / 3; 
            object-fit: fill;
          }

    .div4 { 
            grid-area: 6 / 2 / 7 / 3;
            text-align: center; 
          }

    .div5 { 
            grid-area: 2 / 4 / 7 / 5; 
          }

    .slideshow-container {
        max-width: 100%;
        height: auto;
        align-items: center;
      }
      
      /* Hide the images by default */
      .mySlides {
        display: none;
      }
      
      /* Next & previous buttons */
      .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        margin-top: -22px;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
      }
      
      /* Position the "next button" to the right */
      .next {
        right: 0;
        border-radius: 3px 0 0 3px;
      }
      
      /* On hover, add a black background color with a little bit see-through */
      .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
      }
      
      /* The dots/bullets/indicators */
      .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
      }
      
      .active, .dot:hover {
        background-color: #717171;
      }
      
      /* Fading animation */
      .fade {
        animation-name: fade;
        animation-duration: 1.5s;
      }
      
      @keyframes fade {
        from {opacity: .4}
        to {opacity: 1}
      }

      @media screen and (max-width: 600px){ 
        h1 {
          font-size: 25px;
          align-items: center;
          justify-content: center;
          text-align: center;
        }

        p {
          font-size: 15px;
          align-items: center;
          justify-content: center;
          text-align: center;
        }

        body {
          background: rgb(94, 0, 0);
        }

        .parent {
          display: grid;
          grid-template-columns: repeat(4, 25%);
          grid-template-rows: 12% repeat(2, 20%) 18% 5% 25%;
          grid-column-gap: 0px;
          grid-row-gap: 8px;
          }
          
          .div1 { grid-area: 1 / 1 / 2 / 2; }
          .div2 { grid-area: 2 / 1 / 4 / 5; }
          .div3 { 
                  grid-area: 4 / 1 / 5 / 5; 
                  align-items: center;
                  text-align: center;
                }
          .div4 { grid-area: 5 / 1 / 6 / 5; }
          .div5 { grid-area: 6 / 1 / 7 / 5; }
      }
