* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: 0;
  border: 0;
  flex-grow: 1;
}

html {
  display: flex;
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

header,
footer {
  display: flex;
  flex: 0 0 100px;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgb(252 254 255);
  text-align: center;
}

header {
  margin-bottom: 10px;
  border-bottom: 1px solid #eaf7ff;
  box-shadow: 0px 5px 19px 0px rgb(0 0 0 / 6%);
}

footer {
  margin-top: auto;
  border-top: 1px solid #eaf7ff;
  box-shadow: 0px -5px 19px 0px rgb(0 0 0 / 6%);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
}


header .logo {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 1;
}

header .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

@media screen and (min-width: 740px) {
  .menu {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }

  .menu ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-end;
    list-style: none;
    gap: 1px;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu ul li {
    display: flex;
  }

  .menu ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: rgb(61, 68, 81);
    text-align: center;
    height: 100px;
    padding: 0 25px;
    min-width: 140px;
    max-width: 100%;
  }

  .menu ul li a:hover {
    background-color: #63b6cc;
    color: rgb(255, 255, 255);
  }
}



body h1 {
  font-size: 2.3rem;
  font-weight: 400;
  color: rgb(92, 92, 92);
  margin: 20px 0;
}

body h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: rgb(92, 92, 92);
}

.info-cont-universal {
  position: relative;
  margin: 0 auto;
  width: clamp(229px, 100%, 654px);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
  overflow: auto;
}

b {
  font-weight: 600;
  color: rgb(61, 83, 123);
}

p {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(92, 92, 92);
  margin: 10px 0;
}