@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300&display=swap');

body{
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    min-width: 315px;
}



header{
    margin-top: 2%;
    display: flex;
    height: auto;
    padding: 10px;
    background-color: #DBE9CB;
}

.parent{
    position: relative;
    display: flex;
    width: 100%;
}

.icon-container, .title-container{
    width: 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


.icon-container , .profile-img{
    position: absolute;
    z-index: 10;
}

.profile-img{
    border-radius: 50%;
    margin-left: 20px;
    margin-top: 10px;
}

.icon{
    margin: auto;
}

@media screen and (max-width: 600px) {

    .icon-container {display:none;}

}

.title-div-1{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.title-div-2{
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 , h4{
    margin-top: 10PX;
    margin-bottom: 10PX;
    margin-left: auto;
    margin-right: auto;
}

.info{
    width: 15%;
    display: flex;
    justify-content: center;
}

.contact, .adress{
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    align-items: center;
    height: auto;
}

.adress{
    width: 98%;
    justify-content: end;
}

.content-title{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}


 .main-content{
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: #DBE9CB;
    flex-direction: column;
    padding: 10px;
 }

 .content{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;


 }


 footer{
    background: #f5f5f5;
    height: auto;
    padding-top: 20px;
    margin-top: 40px;
 }

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

 /*
 Credit to @AllThingsSmitty on codepen.io for table style
 */

 table {
    border: 1px solid #ffffff;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
  }
  
  table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  table tr {
    background-color: #ffffff;
    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;
    }
  
    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 {

      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    table td:last-child {
      border-bottom: 0;
    }
  }
