/* Basic navbar styling */
* {
    margin: 0;
    padding: 0;
}


.colour_text_box
{
  width: auto;
  height: auto;
  padding: 1px;
  margin: 1px;
  background: yellow;
  text-align: center;
}

.raffle_colour_text_box
{
  width: auto;
  height: auto;
  padding: 1px;
  margin: 1px;
  background: GreenYellow;
  text-align: center;
}

.thumb_nail {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: auto;
}

.d-block {
    width: 100%;
    overflow: visible;
}

.block {
    display: block;
    width: 140%;
    height: auto;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: auto;
}

.description {
    font-size: 12px;
    font-weight: bold;
    margin-left: auto;
    margin-bottom: auto;
    margin-right: auto;
    color: black;
    text-align: center;
}

.below_header {
    max-height: 8000px;
    overflow: hidden;
}

/* Desktop over 1200 */
@media (min-width:1200px) {
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 310px;
    }

    .block {
        display: block;
        width: 85%;
    }
}

/* Desktop menu */
@media (min-width:992px) and (max-width:1199px){
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 240px;
    }

    .block {
        display: block;
        width: 75%;
    }
}

/* Tablet menu */
@media (min-width:768px) and (max-width:991px) {
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 210px;
    }

    .block {
        width: 83%;
        height: auto;
    }

    .description {
        font-size: 11px;
    }
}

/* Submenu up from mobile screens */
@media (min-width:500px) and (max-width:767px) {
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 180px;
    }

    .block {
        width: 82%;
        height: auto;
    }

    .description {
        font-size: 10px;
    }
}

/* Mobile menu navbar */
@media (min-width:360px) and (max-width:499px) {
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 135px;
    }

    .block {
        width: 80%;
        height: auto;
    }

    .description {
        font-size: 9px;
    }
}

/* Mobile menu navbar */
@media (min-width:200px) and (max-width:359px) {
    .photo_row {
        display: grid;
        grid-template-columns: 1fr 6fr 6fr 6fr 6fr 1fr;
        grid-template-rows: 135px;
    }

    .block {
        width: 80%;
        height: auto;
    }

    .description {
        font-size: 9px;
    }
}


}


}