@charset "UTF-8";


*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

header{
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    background-color: rgba(121, 121, 121, 0.8);

}
header h1 {
    /*text-align: center;*/
    padding: 1rem;
    position:absolute;
    top:0;
    left: 1rem;
  }

  nav {
    position:absolute;
    top:0;
    right: 1rem;
  }

nav ul{
    padding-bottom: 1rem;
    text-align: center;
}
nav ul li {
    display: inline-block;
    margin: 0 10px;
  }

nav ul li a {
    font-weight: bold;
    color: #00454c;
}

header{
   /* background: #97423c ;*/
}

body{
    height:100%;
}

#wrap {

display: flex;
flex-direction: column;
min-height: 100vh;
}

section h2{
    text-align: center;
    font-size: 2rem;
    color :#FFF;
    text-decoration: underline;
}




main{
    padding: 1rem;
    flex-grow:1;
    max-width: 1200px;
    margin: 0 auto;
}

section{
    background: #6c7875;
    padding: 20px;
}

.container{
    display:flex;
    gap: 20px;
}

.column-img {
    flex:1;

}

.column-text{
    flex:2;
}

footer{
    background: #373737;
    color: #FFF;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

a.pagetop {
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 12px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #313131;
    color: #a8ff37;
    position: fixed;
    bottom: 0;
    right: 20px;
  }
  
  html {
    scroll-behavior: smooth;
  }


