:root {
  --white-text: #ebebeb;
  --black-text: #262626;
  --background: #b7f0ff;
  --title: #18687b;

  --font-family: "Karla", sans-serif;
  --second-family: "Tenor Sans", sans-serif;
  --third-family: "Libre Caslon Text", sans-serif;
  --font3: "Roboto", sans-serif;
  --font4: "Libre Caslon Display", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--black-text);
  background: var(--background);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.section-mno {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.container-mno {
  position: relative;
  width: 375px;
  padding: 20px;
}

.section-title-mno {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  color: var(--title);
  margin-bottom: 24px;
}

/* links */

.website-link-mno {
  border-radius: 10px;
  width: 320px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #fff;

  transition: all 0.3s ease;
}

.link-red-mno {
  background: #f25b54;
}

.link-red-mno:hover {
  background: url(/images/link-red-hover-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
  color: var(--black-text);
}

.link-red-mno:active {
  background: #fff15e;
  color: var(--black-text);
  border-radius: 10px;
}

.link-green-mno {
  background: #17b644;
}

.link-green-mno:hover {
  background: url(/images/link-green-hover-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
  color: var(--black-text);
}

.link-green-mno:active {
  background: #dd680f;
  color: var(--white-text);
  border-radius: 10px;
}

@media screen and (min-width: 1440px) {
  .container-mno {
    width: 1440px;
    padding: 96px 60px 0;
  }

  .section-title-mno {
    font-size: 48px;
    margin-bottom: 60px;
  }
}
