﻿
@import "/fontawesome/css/all.min.css"; /* Using a string */
@import url('https://fonts.googleapis.com/css?family=Comfortaa&display=swap');


html, body
{
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}

    *
{
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
} 


    
html{
scroll-behavior: smooth;
}

    html, body
{
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
}


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav
{
    overflow: hidden;
    background-color: #333;
    width: 100%;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon
    {
        float: right;
        display: block;
    }
    

  
  
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a
    {
        float: none;
        display: block;
        text-align: left;
    }
}


/* tabel responsive*/

table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 60%;
  table-layout: fixed;
}

table caption
{
    font-size: 2.5em;
    margin: .5em 0 .75em;

}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .35em;
}

table th, table td
{
    padding: .625em;
    text-align: center;
}

table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media screen and (max-width: 600px) {
  table {
    border: 0;
    width: 100%;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  table td:last-child {
    border-bottom: 0;
  }
}



