body {font-family: Arial, Helvetica, sans-serif;
  margin:0;
}
.myicons {
  font-size:16px;
  color:white;
  margin:5px;
}
/* Main page */
.bodypart {
  background-image: url('images/leggere.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  opacity: 0.75;
  height: 92vh;
  width: 100%;
  position: relative;
}
.maintitle {
  color:black;
  margin:0;
  padding:20px;
  text-align: center;
}
.subtitle {
  color:black;
  padding:10px;
  text-align: center;
}
.mytext {
  color:black;
  padding: 10px;
}
/* Body Part Style */
.mybody {
  padding:10px;
}
/* Avatar Style */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
}

img.avatar {
  width: 50%;
  border-radius: 50%;
}
/* Style the navigation bar */
/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
    background-color: #333;
    overflow: auto;
    width: 100%;
  }
  
  /* Style the links inside the navigation bar */
  .navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 17px;
  }
  
  /* Change the color of links on hover */
  .navbar a:hover {
    background-color: #000;
  }
  
  /* Add a green background color to the active link */
  .navbar a.active {
    background-color: #4c6962;
    color: white;
  }
  
  /* Hide the link that should open and close the navbar on small screens */
  .navbar .icon {
    display: none;
    font-size: 12px;
  }
  .navbar.responsive a.icon {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 12px;
  }
  .navbar.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
/*Stile footer */
.bottombar {
  background-color: #333;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}
/*Footer Link */
.bottombar a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-size: 14px;
}
/*Footer Text */
.bottombar p {
  float: right;
  display: block;
  text-align: center;
  color: #f2f2f2;
  padding: 16px;
  margin:0;
  font-size: 14px;
}
/*Footer Link Hover */
.bottombar a:hover {
  /*background-color: #000;*/
  color: white;
}
/*Footer Link active */
.bottombar a.active {
  background-color: #04AA6D;
  color: white;
}
/*Pulsante generico */
.button {
  background-color: #4c6962;
  border: none;
  color: black;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  /*margin: 4px 2px;*/
  cursor: pointer;
  border-radius: 8px;
  width: 40px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5), 0 4px 10px 0 rgba(0,0,0,0.5);
}
.button:hover {
  background-color: #b0c5c0;
  color: black;
}
.buttonnav {
  background-color: #4c6962;
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  /*margin: 4px 2px;*/
  cursor: pointer;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.5), 0 4px 10px 0 rgba(0,0,0,0.5);
}

.buttonnav:hover {
  background-color: #b0c5c0;
  color: black;
}

table {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 80%;
  border:0
  /*border: 1px solid #ddd;*/
}

th, td {
  text-align: left;
  padding: 5px;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}
  
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 900px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}