*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: 'PT Sans', sans-serif;
}
main{
    background-color: rgb(255, 255, 255);
    left: 80px;
    top: 80px;
}
.p{
    object-position:60px ;
    
}

header{
    width:auto;
    height:auto;
    background-size: cover;
    background-position: center;
}

.nav{
    width: 100%;
    background-color:peru;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 5px;        
}
.logo{
    align-content:baseline;
    font-size: 15px;
    color:#fff;
    font-weight: bold;
    align-items:baseline;
    background-image: none;

}
.menu{
    display:flex;   
}
.menu li{
    list-style:none;
    margin: 5px;
}

.menu li a{
    color:#fff;
    border-style:none;
    border-radius: 5%;
    border-color:peru;
    text-decoration:solid;
    font-weight: bold;
    transition:all .1s ease;
    font-size: 18px;
}
.menu li a:hover{
    padding: 0px 0px;
    background:peru ;
    color:#ccc ;
    border: radius 0px;
}
.form{
    position:relative;
    width: 800px;
    height: 800px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #c4beaf;
    border-radius: 20px;
    margin: auto;
}   
 
  
input[type=text]{
    width: 150px;
    height: 25px;
    font:14px normal normal uppercase helvetica,arial,serif ;
}   

input[type=submit]{
    position:relative;
    width: 100px;
    height: 40px;
    border-radius: 20px;
    margin-left: 600px;
    border: 0px;
    background-color: #5b6f85;
    font: 14px normal normal uppercase helvetica,arial,serif;
    color: white;
}   




* {
    box-sizing: border-box;
  }
  
  html.open, body.open {
    height: 100%;
    overflow: hidden;
  }
  
  html {
    padding: 5px;
    font-size: 62.5%;
  }
  
  body {
    padding: 5px;
    background-color:  #5b6f85;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
  }
  
  p {
    text-align: center;
    margin: 20px 0 60px;
  }
  
  main {
    background-color: #5b6f85;
  }
  
  h1 {
    text-align: center;
    font-weight: 300;
  }
  a
  {
    color:white;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
  }  
  table {
    display: block;
  }
  
  tr, td, tbody, tfoot {
    display: block;
  }
  
  thead {
    display: none;
  }
  
  tr {
    padding-bottom: 10px;
  }
  
  td {
    padding: 10px 10px 0;
    text-align: center;
  }
  td:before {
    content: attr(data-title);
    color: #7a91aa;
    text-transform: uppercase;
    font-size: 1.4rem;
    padding-right: 10px;
    display: block;
  }
  
  
  table {
    width: 80%;
  }
  
  th {
    text-align: left;
    font-weight: 700;
  }
  
  thead th {
    background-color: #202932;
    color: #fff;
    border: 1px solid #202932;
  }
  
  tfoot th {
    display: block;
    padding: 10px;
    text-align: center;
    color: #b8c4d2;
  }
  
  .button {
    line-height: 1;
    display: inline-block;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    color:#7a91aa;
    padding: 8px;
    background-color:white;
  }
  
  .select {
    padding-bottom: 20px;
    border-bottom: 1px solid #28333f;
  }
  .select:before {
    display: none;
  }
  
  .detail {
    background-color: #BD2A4E;
    width: 100%;
    height: 100%;
    padding: 40px 0;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
  }
  .detail.open {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  
  .detail-container {
    margin: 0 auto;
    padding: 40px;
    max-width: 500px;
  }
  
  dl {
    margin: 0;
    padding: 0;
  }
  
  dt {
    font-size: 2.2rem;
    font-weight: 300;
  }
  
  dd {
    margin: 0 0 40px 0;
    font-size: 1.8rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #ac2647;
    box-shadow: 0 1px 0 #c52c51;
  }
  
  .close {
    background: none;
    padding: 18px;
    color: #fff;
    font-weight: 300;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    line-height: 1;
    font-size: 1.8rem;
    position: fixed;
    right: 40px;
    top: 20px;
    -moz-transition: border 0.3s linear;
    -o-transition: border 0.3s linear;
    -webkit-transition: border 0.3s linear;
    transition: border 0.3s linear;
  }
  .close:hover, .close:focus {
    background-color: #a82545;
    border: 1px solid #a82545;
  }
  
  @media (min-width: 460px) {
    td {
      text-align: left;
    }
    td:before {
      display: inline-block;
      text-align: right;
      width: 140px;
    }
  
    .select {
      padding-left: 160px;
    }
  }
  @media (min-width: 720px) {
    table {
      display: table;
    }
  
    tr {
      display: table-row;
    }
  
    td, th {
      display: table-cell;
    }
  
    tbody {
      display: table-row-group;
    }
  
    thead {
      display: table-header-group;
    }
  
    tfoot {
      display: table-footer-group;
    }
  
    td {
      border: 1px solid #28333f;
    }
    td:before {
      display: none;
    }
  
    td, th {
      padding: 10px;
    }
  
    tr:nth-child(2n+2) td {
      background-color: #242e39;
    }
  
    tfoot th {
      display: table-cell;
    }
  
    .select {
      padding: 10px;
    }
  }