@font-face {
  font-family: "PublicoHeadline-Bold";
  src: url("./content/PublicoHeadline-Bold.otf");
}


* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font-family: 'PublicoHeadline-Bold', sans-serif;
}

html,
body {
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
}

#root {
  height: 100%;
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  padding: 1rem;
  text-decoration: none;
}

.container__logo {
  display: block;
  width: 3rem;
  height: auto;
  margin-right: 0.5rem;
}

.container {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.shareplan {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  padding: 2rem 1rem;
  flex: 1 0 auto;
  row-gap: 1rem;
}

.shareplan__fr {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
  align-items: center;
}

.shareplan__en {
  display: flex;
  row-gap: 1rem;
  flex-direction: column;
  align-items: center;
}

h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  width: 250px;
  white-space: pre-wrap;
}

.shareplan__url {
  padding: 12px 16px 12px 16px;
  background-color: #00008f;
  font-weight: 600;
  line-height: 24px;
  font-size: 18px;
  color: white; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.shareplan__arrow {
  margin-left: 1rem;
  width: 24px;
  height: 24px;
}

.shareplan__image {
  width: 100%; 
  height: 250px;
  background-size: cover;
  background-position: center;
  background-image: url('./content/mobile.avif');
}

@media (min-height: 668px) and (max-height: 932px) {
  .shareplan__image {
      height: 375px;
  }
}

@media (min-width: 720px) and (max-width: 1080px) {
  .shareplan__image {
    height: 450px;
    background-image: url('./content/tablet.avif');
  }

  .shareplan {
    flex-direction: row;
  }
}

@media (min-width: 1081px) {
  .shareplan__image {
    height: 550px;
    background-image: url('./content/desktop.avif');
  }

  .shareplan {
    flex-direction: row;
  }
}