@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --fontFam: "Poppins", sans-serif;
  --color1: #222;
  --color2: #333;
  --color3: #666;
  --bgColor: linear-gradient(to right, #99a3a3, #e9e9e9);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: var(--bgColor);
  font-family: var(--fontFam);
  font-size: 18px;
  letter-spacing: 1px;
  height: 100%;
}

h1 {
  font-size: 34px;
  color: var(--color2);
  padding: 20px;
}

.container {
  max-width: 500px;
  padding: 30px;
}

.content {
  width: auto;
  border: 1px solid var(--color1);
  padding: 30px;
  margin-bottom: 50px;
}

.copy {
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
  background-image: var(--bgColor);
  color: var(--color2);
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 12px 0;
}

.copy a {
  color: var(--color2);
  text-decoration: underline;
  text-decoration-color: var(--color2);
  text-underline-offset: 5px;
}

.copy a:hover {
  color: var(--color2);
  text-decoration: none;
}

@media only screen and (max-width: 370px) {

  .content {
    padding: 20px 10px;
  }

  .copy {
    line-height: 1.5;
  }

  .copy a {
    text-underline-offset: 2px;
  }

  .copy2 {
    display: block;
  }
}