html {
  scroll-behavior: smooth;
}

body {
  font-family: "Comfortaa", cursive;
  resize: none;
  margin: 0;
  padding: 0;
}

button {
  background-color: #0093E9;
  background-image: linear-gradient(90deg, #0093E9 0%, #80D0C7 100%);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  border: none;
  margin: 1em;
  padding: 1em 2em;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10cm;
  cursor: pointer;
}
button:hover {
  background-position: right center;
}

h1 {
  font-family: "Noto Serif", serif;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
nav .navBlock {
  position: fixed;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  margin: 5mm;
  padding: 2mm;
  border-radius: 1em;
  background-color: white;
}
nav img {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  width: 7.5mm;
  margin: 1mm;
  padding: 1mm;
  border-radius: 25%;
  background-color: white;
  transition: 0.5s;
}
nav img:hover {
  background-color: #b0d5eb;
}

.imageTop {
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  background-image: url("assets/images/background.gif");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.imageTop h1 {
  font-family: "Dancing Script", cursive;
}

.logo {
  width: 10em;
  border-radius: 1cm;
}

.projects {
  text-align: center;
  padding: 1cm;
  background-color: white;
}

.block {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  width: 20em;
  border-radius: 1cm;
  background-color: white;
  margin: 5mm;
  padding-bottom: 1cm;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-content: space-around;
  align-items: center;
}
.block img {
  border-radius: 1cm 1cm 0 0;
  width: 100%;
}

.instruments {
  text-align: center;
  background: #f88cff;
  background: linear-gradient(45deg, #f88cff 0%, #8cb9ff 100%);
  padding: 1cm;
}
.instruments img {
  border-radius: 0;
  width: 1cm;
}

.list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-content: space-around;
  align-items: flex-start;
}

.end {
  background-color: #383838;
  text-align: center;
  color: white;
  padding: 2em;
}
.end img {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
  width: 1cm;
  margin: 1em;
  padding: 3mm;
  border-radius: 25%;
  background-color: white;
}

@media only screen and (max-device-width: 480px) {
  nav .navBlock {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background-color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  nav img {
    width: 2em;
  }
}