*{
  font-family: 'Merienda', cursive;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

/* navbar*/
.navim{
  height: 150px;
}

.bgs{
  background-color: #03224c;
}


#mainNavigation {
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.4);
}

.dropdown-menu {
  background:rgb(165, 255, 255);
}

.dropdown-toggle {
  color:#dfdfdf !important
}

.dropdown-item:hover {
  color:#03727d !important
}

.nav-item {
  color:#dfdfdf;
}

.nav-item:hover {
  color:aqua;
}

.nav-item{
  min-width:12vw;
}

#mainNavigation {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:123;
  padding-bottom:40px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
background: -moz-linear-gradient(top,  rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

#navbarNavDropdown.collapsing ,
#navbarNavDropdown.show {
  background:rgba(3, 34, 76, 0.4);
  padding:12px;
}

  


h1{
    text-align: center;
    margin-bottom: 50px;
}

.bg{
    background-image: linear-gradient(0deg, #ffffff 0%, #B5FFFC 100%);
   
}

.global{
    display: flex;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5%;
    text-align: center;
    flex:auto;
    width: 70%;
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom: 50px;
}

.one{
    height: 100px;
    margin-top: 100px;
    text-align: center;
}

.two{
    height: 100px;
    text-align: center;
}

.cent{
    height: 100px;
    margin-top: 100px;
    text-align: center;
}

.btn1{
    text-align: center;
    padding-bottom: 5px;
    color: black;
    margin-top: 250px;
    border-bottom: 5px black;
    background-color: red;
}
.btn2{
    text-align: center;
    padding-bottom: 5px;
    color: black;
    margin-top: 250px;
    border-bottom: 5px black;
    background-color: greenyellow;
}

.btn2:hover {
    background-color: lightgreen;
}

.btn1:hover {
    background-color: rgb(255, 139, 139);
}

.but{
    text-align: center;
}

.rot1{
    -webkit-animation: rotation 10s linear infinite;
    -moz-animation: rotation 10s linear infinite;
    animation: rotation 10s linear infinite;
}
.rot2{
    -webkit-animation: rotationInverse 20s linear infinite;
    -moz-animation: rotationInverse 20s linear infinite;
    animation: rotationInverse 20s linear infinite;
}

.rot3{
    -webkit-animation: rotationInverse 4s linear infinite;
    -moz-animation: rotationInverse 4s linear infinite;
    animation: rotationInverse 4s linear infinite;
}

@keyframes  rotation{
    100%{
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
}
}

@keyframes rotationInverse {
    100%{
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}