	/*MAIN CSS DOC */

html,body {
  height: 100%;
  width: 100%;
}

    .page-wrap {
        max-width: 1100px;
        margin: 0 auto;
    }

	/*FONT AND TEXT*/
body, p {
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
  margin: 100;
  padding: 100;
  
}

h1 {
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 5vw;
  font-weight: 800;
  margin: 0 auto;
  color: #0000ff;
}

h2 {
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-size: 3.5vw;
  font-weight: 800;
    margin: 0 auto;
      padding-top: 10%;
  color: #000000;
  width: fit-content;

  writing-mode: vertical-rl;
 text-orientation: mixed;
 transform: rotate(-160deg);
}


p {
  margin: 10px 0 10px 0;
  font-size: 1vw;
  color: #000000;
  text-align: left;
}

a {
  color: #0000ff;
  text-decoration: none;
  
}

a:hover,a:focus {
  display: inline;
  color:#0000ff;
  text-decoration:underline;

}

cap {
    margin: 0 0 20px 0;
  font-size: .7vw;
  color: #000000;
  text-align: right;
}


hr {
    height: 10px;
    color: #0000ff;
    border-radius: 12px;
    background-color: #0000ff;
    border: none;
}

green {
    color: #33cc33;
}
blue {
    color: #1124ad;
}

 /* CONTAINERS */

.title-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 30px 0 60px 0;
}



.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  margin: 15px;
  width: 100%;
}
.column-a {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  flex-shrink: 1;
  margin: 15px;
  width: 100%;
  height: auto;
  border: 2px solid blue; 
  border-radius: 25px;
  padding: 10px;
}


img {
    margin: 10% 0 10% 0;
    -webkit-filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5)); 
    filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5));

}

img:active {
     -webkit-filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5)); 
    filter: drop-shadow(12px 12px 7px rgba(0,0,0,0.5));
    transform: scale(2,2);
    -moz-webkit-transform: scale(2,2);
    -o-webkit-transform: scale(2,2);
    -ms-webkit-transform: scale(2,2);
    z-index: 5;
}

/* Use a media query to add a breakpoint at 800px: */
@media screen and (max-width: 800px) {
    
p {
  font-size: 3vw;
}

cap {
  font-size: 2vw;
}

h1 {

  font-size: 8vw;

}

h2 {

  font-size: 6vw;
    margin: 0 auto;
      padding-top: 10%;


}

.row {
 width: 90%;
 margin: 0 auto;
  flex-direction: column;

}

.column {
 width: 100%;
  margin: 10% 0 10% 0;

}





}   