/*reset css = enlève tous les styles par défaut des navigateurs*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* définition des polices */

@font-face {
  font-family: "GlacialIndifference";
  src: url("GlacialInfifference-Regular.otf");
}
@font-face {
  font-family: "sourcesanspro";
  src: url("SourceSansPro-Regular.otf");
}

/*menu*/
.menu {
  border-radius: 10px 10px 0px 0px;
  background-color: rgba(202, 202, 202, 0.8);
  margin-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 25px;
}

nav {
  font-family: "sourcesanspro";
  max-width: 900px;
  width: 100%;
  font-size: 20px;
  padding-bottom: 25px;
  margin-bottom: 70px;
}

nav ul {
  list-style-type: none;
  display: flex;
  color: rgb(255, 240, 240);
  display: flex;
  justify-content:center;
  flex-wrap:wrap;
}

nav li {
  display:flex;
  justify-content: center;
  margin-right: 15px;
  color: rgb(0, 0, 0);
  text-shadow: none;
}

nav li a {
  display:flex;
  justify-content: center;
  color: rgb(83, 83, 83);
  padding-bottom: 3px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: border 0.5s ease;
}

nav a:hover {
  color: rgb(255, 240, 240);
  border-color: rgb(255, 240, 240);
}

.menu_accueil {
  border-radius: 10px 10px 0px 0px;
  background-color: none;
  margin-bottom: 0px;
  padding-top: 15px;
  padding-bottom: 30px;
}

.menu_accueil ul {
  list-style-type: none;
  display: flex;
  color: rgb(253, 253, 253);
  justify-content: center;
}

.menu_accueil a {
  margin-right: 15px;
  color: rgb(253, 253, 253);
}

/*éléments du header*/

header {
  display: flex;
  flex-direction: column;
  color: rgb(255, 240, 240);
  text-shadow: 2px 2px rgb(27, 27, 27);
  padding-top: 40px;
  padding-bottom: 25px;
  margin-bottom: 5px;
}

#ArtistName {
  font-family: "GlacialIndifference", "sourcesanspro", "Arial";
  font-size: 90px;
  font-variant-caps: small-caps;
  text-align: center;
}

#Instrument {
  font-family: "GlacialIndifference", "sourcesanspro", "Arial";
  font-size: 60px;
  font-variant-caps: small-caps;
  text-align: center;
}

/*toute la page*/

body {
  max-width: 900px;
  margin: auto;
}

.background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("cover_rome_linea_cropped.jpg") fixed no-repeat center;
  background-size: cover;
}

/*mediaqueries*/
@media all and (max-width: 480px) {
  .dvd {
    display: flex;
    flex-wrap: wrap;
  }

  .background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("cover_rome_linea_cropped.jpg") fixed no-repeat center;
    background-size: cover;
  }
  main {
    position: relative;
  }

  body {
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 5px;
    margin-left: 5px;
    font-size: 18px;
  }
  #ArtistName {
    font-size: 65px;
    font-variant-caps: small-caps;
    text-align: center;
    text-shadow: 1px 2px rgb(27, 27, 27);
  }

  #Instrument {
    font-family: "GlacialIndifference", "sourcesanspro", "Arial";
    font-size: 45px;
    font-variant-caps: small-caps;
    text-align: center;
    text-shadow: 1px 2px rgb(27, 27, 27);
  }

  nav ul {
    display: flex;
    flex-direction: column;
    justify-content:left;
    align-items: flex-start;
    font-size: 17px;
    text-align: left;
    padding: 10px;
  }
  nav {
    display: flex;
    justify-content: left;
  }
}
