* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
  text-decoration: none;
}
header {
  z-index: 2;
  position: sticky;
  top: 0;
  background-color: white;
  padding: 1.2em;
}
nav {
  display: flex;
  justify-content: space-between;
}
button {
  cursor: pointer;
  background: transparent;
  border: 1.3px solid #181818;
  outline: none;
  transition: 0.3s ease-in-out;
}

nav ul {
  list-style-type: none;
}
nav ul li {
  padding-right: 1em;
  display: inline;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 1px;
  color: black;
}
nav ul li:hover {
  color: #25b2e0;
}
.selected li {
  color: #25b2e0;
  font-weight: 600;
}
.selected button {
  border: 1.3px solid #25b2e0;
  color: #25b2e0;
}
.branding h3 {
  font-size: 1.6em;
  letter-spacing: 3px;
}
.part-right {
  float: right;
}
.btn {
  width: 90px;
  height: 30px;
}
.btn:hover {
  border: 1.3px solid #25b2e0;
}
.btn span {
  font-size: 1em;
  font-weight: 300;
  letter-spacing: 1px;
}
body img {
  position: absolute;
  z-index: 0;
  max-width: 55%;
  right: 0;
}
.home-text {
  z-index: 1;
  padding-top: 2em;
  font-size: 4.5em;
  font-weight: 500;
}
.name {
  font-size: 1.5em;
  font-weight: 600;
  color: #25b2e0;
}
.home-body {
  text-align: left;
  padding-left: 5em;
  padding-right: 5em;
  padding-top: 5em;
  display: flex;
  justify-content: space-between;
}
.btn2 {
  border-radius: 5px;
  width: 200px;
  height: 50px;
}
.btn2 span {
  font-size: 2em;
}
.showcase {
  z-index: 1;
  margin-top: 14em;
  position: relative;
}
.showcase-banner {
  padding-top: 50px;
  text-align: center;
  height: 200px;
  width: 100%;
  background-color: #25b2e0;
}
.showcase-banner span {
  color: white;
  font-size: 6em;
  font-weight: 600;
  letter-spacing: 5px;
}
.viva {
  justify-content: space-between;
  margin-right: 2em;
  margin-left: 4em;
  margin-top: 7em;
  display: flex;
}
.viva img {
  z-index: 0;
  position: absolute;
  right: 1em;
  max-width: 28%;
}
.viva div {
  padding-top: 1.5em;
  padding-right: 35%;
  font-weight: 500;
  font-size: 3em;
}
.viva-text {
  color: #25b2e0;
  font-size: 1.4em;
  font-weight: 700;
}
.more-button {
  margin-top: 1em;
  height: 50px;
  width: 190px;
  font-size: 0.8em;
  font-weight: 300;
}
button:hover {
  font-weight: 500;
  border: 2px solid #25b2e0;
  color: #25b2e0;
}
footer {
  text-align: center;
  padding-top: 20px;
  margin-top: 30%;
  height: 100px;
  width: 100%;
  background-color: rgb(61, 61, 61);
}
footer ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
footer ul li {
  padding: 0.5em;
  font-size: 0.9em;
  font-weight: 300;
  letter-spacing: 1px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.685);
}
footer ul li a:hover {
  color: #25b2e0;
}
@media (max-width: 590px) {
  nav ul li {
    padding-right: 1em;
    display: inline;
    font-size: 0.9em;
    font-weight: 300;
    letter-spacing: 1px;
  }

  body img {
    display: none;
  }
  .viva {
    margin-left: 20%;
    margin-right: 20%;
  }
}
