body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
width: 100%;
}

h1, h2 {
    text-align: center;
}

input[type=text] {
    width: 90%;
    padding: 15px;
}

/*--backgroundColor--*/
.dark { background-color: #0071A7; }
.color {background-color: #55A0C4; }
.light { background-color: #AAD0E2; }
.white { background-color: white; }

/*--BOTTOMBAR--*/
.bottomBar {
    overflow: none;
    color: white;
    text-align: center;
    margin-top: 10px;
    bottom: 0%;
    width: 100%;
    margin: auto;
    background-color:#607d8b
}

/*--BUTTON--*/
.btn { width: 90%; padding: 16px 32px; color: white; font: 16px; border: none; margin: 4px 2px; cursor: pointer; text-align: center; background-color: #04AA6D; margin-bottom: 10px; }
.btn:hover { background-color: #ddd; color: black; }

/*--CARD--*/
.card {
    width: 100%;
    border-radius: 15px;
    border-style: solid;
    border-width: 1px; 
}
.card img {
    padding: 10px;
    width: 95%;
    border-radius: 15px;
    text-align: center;
}

/*--CHIP--*/
.chip { display: inline-block; padding: 0 25px; height: 50px; font-size: 16px; line-height: 50px; border-radius: 25px; background-color: #009999; color: white}
.chip:hover { background-color: #ddd; color: black; cursor: pointer; }
.chip img { float: left; margin: 0 10px 0 -25px; height: 50px; width: 50px; border-radius: 50%; }

/*--CONTAINER--*/
.con-p { padding: 2px 16px; }

.con-50 {
    width: 50%;
    margin: auto;
    padding: 10px;
}

.con-mes {
    padding: 8px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px black solid;
}

.con-img {
    position: relative;
    font-family: Arial;
}

.text-block {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: black;
    opacity: 50%;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

/*--DISPLAY--*/
.flex {
    display: flex;
}

/*--FLOAT--*/
.left { float: left; }
.right { float: right; }

/*--header--*/
.header {padding-bottom: 10px; }

/*--MAIN--*/
.main {
    display: flex;
    width: 80%;
    margin: auto;
}

/*--MARGIN--*/
.center { margin: auto; }

/*--PADDING--*/
.pad-p { padding: 5px; }
.pad-m { padding: 10px; }

/*--text--*/
.tblack { color: black; }
.tcenter { text-align: center; }

/*--TOPBAR--*/
.topbar {
  overflow: hidden;
  background-color:#607d8b;
}

.topbar a {
  float: left;
  font-size: 20px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.topbar a:hover {
    cursor: pointer;
    background-color: #CCC;
    color: black;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 20px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
    font-size: 15px;
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover, .dropbtn:hover {
  background-color: #CCC;
  color: black;
  cursor: pointer;
}

.dropdown:hover .dropdown-content {
  display: block;
  cursor: pointer;
}

/*--width--*/
.wid-15 {
    width: 15%;
}

.wid-20 {
    width: 20%;
}

.wid-30 {
    width: 30%;
}

.wid-60 {
    width: 60%;
}

.wid-80 {
    width: 80%;
}

.wid-90 {
    width: 90%;
}

/*--CONTACT--*/
.contact {
    width: 100%;
    background-color: lightgray;
    padding: 8px 8px;
}