@font-face {
    font-family: "LatoRegular";
    src: url("fonts/Lato/Lato-Regular.ttf")
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

html, body {
  max-height: 100%;
}

body {
  background-color: #24282c;
  background-image: url("images/bg-darken.jpg");
  background-size: cover;
  -webkit-font-smoothing: antialiased !important;
  color: #24282c;
}

body, input, button {
  font-family: "LatoRegular", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

ul {
  list-style: none;
}

.container {
  margin: 80px auto 0;
  max-width: 450px;
  width: 100%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content {
  width: 100%;
  max-width: 80%;
  background: rgb(255,255,255, 0.98);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* border-radius: 4px; */
  margin-top: 150px;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}

.content > img {
  background: conic-gradient(
    hsl(191 26% 42%),
    hsl(300 0% 100%),
    hsl(191 26% 42%)
  );
    /* border-color: #a0b5c2; */
    padding: 3px;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    margin-bottom: 15px;
  }

.content h1 {
  margin-bottom: 4px;
}

.content p {
  margin-bottom: 12px;
}

.links {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.links div {
  width: 50px;
}

.links a {
  text-decoration: none;
}

.links a:hover {
  opacity: 0.7;
}

.links img {
  width: 29px;
  height: 29px;
}

@media only screen and (min-width: 960px) {
  /* styles for browsers larger than 960px; */
  .content {
    margin-top: 150px;
  }
}
@media only screen and (min-width: 1440px) {
  /* styles for browsers larger than 1440px; */
  .content {
    margin-top: 150px;
  }
}
@media only screen and (min-width: 2000px) {
  /* for sumo sized (mac) screens */
  .content {
    margin-top: 150px;
  }
}
@media only screen and (max-device-width: 480px) {
 /* styles for mobile browsers smaller than 480px; (iPhone) */
 .content {
    margin-top: 50px;
  }
}
@media only screen and (device-width: 768px) {
 /* default iPad screens */
 .content {
    margin-top: 150px;
  }
}

/* different techniques for iPad screening */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
  /* For portrait layouts only */
  .content {
    margin-top: 200px;
  }
}

@media only screen and (min-device-width: 651px) and (max-device-width: 1023px) and (orientation:landscape) {
  /* For landscape layouts only */
  .content {
    margin-top: -18px;
  }
}

@media only screen and (min-device-width: 571px) and (max-device-width: 650px) and (orientation:landscape) {
  /* For landscape layouts only */
  .content {
    margin-top: -38px;
  }
}

@media only screen and (min-device-width: 250px) and (max-device-width: 570px) and (orientation:landscape) {
  /* For landscape layouts only */
  .content {
    margin-top: -56px;
  }
}
