@font-face {
    font-family: 'ralewayregular';
    src: url('ralewayfont/raleway-regular-webfont.woff2') format('woff2'),
         url('ralewayfont/raleway-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'ralewaylight';
    src: url('ralewayfont/raleway-light-webfont.woff2') format('woff2'),
         url('ralewayfont/raleway-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    display: none;
}

nav {
  position: sticky !important;
}

a {
  text-decoration: none;
  color: grey;
}

a:hover{
  color: #198653;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: calibri;
  font-size: 12pt;
}

h1, h2, h3, h4 {
  font-family: ralewayregular;
}

h1 {
  font-size: 26pt;
}

h2 {
  font-size: 20pt;
}

h3 {
  font-size: 16pt;
}

h4 {
  font-size: 14pt;
}

header {
  background-image: url('images/DEEE.jpg');
  background-attachment: fixed;
  overflow: unset;
}

.scrolled {
    transition: 200ms ease;
    padding: 0.3rem;
    background-color: rgba(255, 255, 255, 0.9)
}

.barre.scrolled {
    transition: 200ms ease;
    height: 3px;
    background-color: #198653;
    padding: 0;
    margin: 0;
}

.barre {
  height: 0;
}

.nav-item {
  display: flex;
  justify-content: center;
}

.dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  margin-left: 20%;
  margin-right: 20%;
}

p {
  text-align: justify;
}

.indent {
  text-indent: 30px;
}

.gotopbtn-container {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: flex-end;
  bottom: 0px;
  height: 80px;
  padding-right: 15%;
  z-index: 200;
}

.gotopbtn {
  width: 50px;
  height: 50px;
  background: white;
  border: solid 1px black;
  border-radius: 50%;
  
  text-decoration: none;
  text-align-last: center;
  line-height: 50px;
  color: black;
  font-size: 22px;
}

.gotopbtn:hover {
  color: gray;
  border: solid 1px grey;
}

@media screen and (max-width: 768px) {
  .gotopbtn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0px;
    height: 80px;
    padding-right: 0;
  }
}