/*
 Theme Name:   ND Formation
 Theme URI:    localhost
 Description:  ND Formation Theme is build on the Default GeneratePress child theme
 Author:       Franck Vienot && Nathacha
 Author URI:   
 Template:     generatepress
 Version:      0.1
*/

/* GENERAL CSS */
@import url('https://fonts.googleapis.com/css2?family=Edu+TAS+Beginner:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&family=Kalam:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

a:hover {
  color: rgba(8, 75, 132, 1);
}

.myBtn {
  display: block;
  position: fixed; /* Fixed/sticky position */
  bottom: 1em; /* Place the button at the bottom of the page */
  right: 3em; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #d10565; /* Set a background color */
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0.6em; /* Some padding */
  border-radius: 0.5em; /* Rounded corners */
  font-size: 0.6em; /* Increase font size */
}
.hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .myBtn {
    display: block;
    position: fixed; /* Fixed/sticky position */
    bottom: 1em; /* Place the button at the bottom of the page */
    right: 3em; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #d10565; /* Set a background color */
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 0.6em; /* Some padding */
    border-radius: 0.5em; /* Rounded corners */
    font-size: 0.6em; /* Increase font size */
  }
  .hidden {
    display: none;
  }
}
