/*stylesheet for paid, yt1 and yt 2*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Lato", sans-serif;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  background: white;
}

.content-padding {
  min-height: 85vh;
  width: 100%;
  margin-top: 50px;
}

.container {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 50px;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
  color: black;
}

.reactangle-tiles {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  list-style: none;
}

.reactangle-tiles li {
  margin-bottom: 3rem;
  background-color: #072f2e;
  border-radius: 0.5rem;
}

.reactangle-tiles li a {
  display: inline-flex;
  justify-content: center;
  width: 25rem;
  padding: 2rem 4rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

/*xxl*/
@media (min-width: 1700px) {
  html {
    font-size: 20px;
  }
}