/* index.css */
@font-face {
  font-family: 'Josefin Sans';
  src: url('fonts/JosefinSans-SemiBold.woff2') format('woff2'),
       url('fonts/JosefinSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* per prevenire eventuali overflow orizzontali */
  height: 100%;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  color: #1d2a42;
  background-color: rgba(51,95,125,1);
}

main {
  margin-top: 50px;
  margin-bottom: 30px;
}