/*AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA*/

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 10px;
}
.cell {
    height: 100px;
}

/* default - small devices */

[class*="col"] {
    grid-column-end: span 12;
}

/* below 600px typically tablet*/

@media only screen and (max-width: 600px) {
    .sm1 {
        grid-column-end: span 12;
    }
    .sm2 {
        grid-column-end: span 6;
    }
    .sm3 {
        grid-column-end: span 4;
    }
    .sm4 {
        grid-column-end: span 3;
    }
    .sm6 {
        grid-column-end: span 2;
    }
    .sm12 {
        grid-column-end: span 1;
    }
}

/* above 601px typically tablet*/

@media only screen and (min-width: 601px) {
    .md1 {
        grid-column-end: span 12;
    }
    .md2 {
        grid-column-end: span 6;
    }
    .md3 {
        grid-column-end: span 4;
    }
    .md4 {
        grid-column-end: span 3;
    }
    .md6 {
        grid-column-end: span 2;
    }
    .md12 {
        grid-column-end: span 1;
    }
}

/* above 1025px typically desktop*/

@media only screen and (min-width: 1025px) {
    .col1 {
        grid-column-end: span 12;
    }
    .col2 {
        grid-column-start: 1;
        grid-column-end: span 6;
    }
    .col3 {
                grid-column-start: 7;
        grid-column-end: span 5;
    }
    .col4 {
        grid-column-end: span 3;
    }
    .col6 {
        grid-column-end: span 2;
    }
    .col12 {
        grid-column-end: span 1;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA*/

/*Containers*/

.a {
    grid-column-end: span 6;
}

/*Containers*/

/*Text boxes*/

.boxa {
 
    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 250px;


    box-shadow: 10px 10px black;

    font-size: 2.5vw;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-top: 10%;
    margin-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
    font-weight: 50;
    text-shadow: 5px 5px #ffffff;

    font-family: Otoma;
    background-color: #94ccc5;
}

.boxb {
  
    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 200px;


    box-shadow: 10px 10px black;

    font-size: 3vw;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-top: 10%;
    margin-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
    font-weight: 50;
    text-shadow: 5px 5px #ffffff;

    font-family: Otoma;
    background-color: #ffffff;
}

.boxc {

    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 1000px;
    width: 85%;

    box-shadow: 10px 10px black;

    font-size: 3vw;
margin-left: 5%;
    text-align: center;
    font-weight: 50;
    text-shadow: 5px 5px #ffffff;

    font-family: Otoma;
 background-color: #94ccc5;
    
}

.boxd {

    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 250px;


    box-shadow: 10px 10px black;

    font-size: 3.5vw;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-top: 2%;
    margin-bottom: 5%;
    padding-left: 15%;
    padding-right: 15%;
    text-align: center;
    font-weight: 50;
    text-shadow: 5px 5px #ffffff;

    font-family: Otoma;
    background-color: #94ccc5;
}


.boxe {

    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 100px;
    width: 85%;

    box-shadow: 10px 10px black;

    font-size: 2.5vw;
margin-left: 5%;
    text-align: center;
    font-weight: 50;
    text-shadow: 5px 5px #ffffff;

    font-family: Otoma;
 background-color: #EABCFF;
    
}

.boxf {

    display: flex;
    justify-content: center;
    align-items: center;

    transition-duration: 0.2s;

    border-radius: 5%;

    height: 500px;
    width: 85%;

    box-shadow: 10px 10px black;


margin-left: 5%;
    margin-top: 3%;
    font-weight: 50;
    text-shadow: 2.5px 2.5px #ffffff;
    line-height: 1.2;

    font-family: Otoma;
 background-color: #94ccc5;
    
}


/*Text boxes*/

/*FONT*/
@font-face {
    font-family: Otoma;
    src: url(OtomanopeeOne-Regular.ttf);
}
/*FONT*/

/*button*/

.btn {

    width: 100%;
    height: 100px;

    border-radius: 5%;

    box-shadow: 1px 1px black;

    font-size: 3vw;

    padding-bottom: 5%;

    margin-top: 10%;
    margin-bottom: 5%;

    text-align: center;
    text-shadow: 2px 2px #ffffff;

    transition-duration: 0.4s;

    font-family: Otoma;
    background-color: #94ccc5;
}

.btn:hover {
    border-radius: 5%;

    height: 50px;
    width: 50%;
    box-shadow: 10px 10px black;

    font-size: 2vw;

    margin-bottom: 5%;

    text-align: center;
    font-weight: 50;
    text-shadow: 0.1px 0.1px #ffffff;

    font-family: Otoma;
    background-color: #eabcff;
}

/*button*/


/*java related*/

        .dice {
            text-align: center;
            display: inline-block;
            margin: 10px;
        }


.hide
{
   opacity:0;
    width: 0.1px;
    height: 0.1px;
}