/* buttons styles */
.button {
    display: block;
    margin: auto;
    margin-top: 1em;

    background-color: #26A69A;

    color: #f2f2f2;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    
} 
.button:hover{
   background-color: #ddd;
   color: black;
}
.big-button {
    margin-top: 2em;

    width: 9em;
    padding: 14px 16px;
    font-size: 2em;
}
.small-button {
    margin-top: 0.5em;

    width: 7em;
    padding: 14px 16px;
    font-size: 1.5em;
}

/* links styles */
.external-link {
    text-decoration: none;
    font-weight: bold;
    color: black;
}
.external-link:hover {
    font-size: 2em;
    color: #00695C;
}

/* text styles */
.bold {
    font-weight: bold;
}
.big {
    font-size: 1.5em;
}
.mid {
    font-size: 1.2em;
}
.text-center {
    text-align: center;
}
.color-header {
    padding-left:2%;
    color: #00695C;
}

/* form styles */
.form {
    margin-top: 2em;
}
input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #45a049;
  }
  
  .container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
  }

  /* table styles */
table {
   border-collapse: collapse;
}

.selectors-table,.selectors-table th, .selectors-table tr, .selectors-table td {
    border: 1px solid #00695C;
    padding: 0.4em;
    text-align: center;
}

td.expl {
    text-align: left;
    padding-left: 0.7em;
    padding-right: 0.7em;
}

/* picture styles */
.emoji {
    height: 12em;
    display: block;
    margin: 0 auto;
}
.expl-pic {
    float: left;
    margin: 1em;
    margin-left: 0;
    margin-right: 1.5em;
}

.pic-comment {
    display: block;
}
.pic-container {
    clear: both;
    display: inline-block;
}