@font-face {
  font-family: "Lobster Two Bold";
  src: url(./assets/fonts/LobsterTwo-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "Lobster Two Regular";
  src: url(./assets/fonts/LobsterTwo-Regular.ttf) format("truetype");
}

html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #f6f6f6 url(./assets/img/bg.jpeg);
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
}

#wrapper {
  width: 100vw;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 24vw;
  padding-left: 24vw;
}

h1 {
  font-size: 26px;
  margin: 0;
  margin-top: 32px;
  text-align: center;
}

h1>.name {
  font-size: 60px;
  font-family: "Lobster Two Bold";
}

h1>.heart {
  font-size: 72px;
}

h3 {
  font-family: "Lobster Two Bold";
  font-size: 40px;
  margin: 0;
  font-weight: bold;
}

p {
  font-size: 26px;
  font-weight: 400;
}

.item {
  width: 100%;
  padding-bottom: 32px;
}

.row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 16px;
}

.col:nth-child(2) {
  text-align: right;
}

a {
  display: flex;
  align-items: center;
  color: white;
}

a>img {
  width: 16px;
  margin-left: 4px;
}

a.calendar {
  padding-bottom: 48px;
  border-bottom: 1px solid white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

a.maps {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#btn-presenza {
  width: 100%;
  height: 64px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 48px;
  margin-bottom: 32px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#btn-presenza:hover {
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 1000px) {
  #wrapper {
    padding-right: 16px;
    padding-left: 16px;
  }

  h2 {
    font-size: 26px;
    margin-top: 32px;
  }

  .row {
    flex-direction: column;
  }

  .item {
    padding: 0;
    margin-top: 16px;
  }

  .col:nth-child(2) {
    text-align: left;
  }
}