/* Global Colors */
/* Gradient Box Colors */
.wrapper {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}
@media only screen and (min-width: 992px) {
  .wrapper {
    flex-flow: row wrap;
  }
}

.column {
  flex-grow: 1;
  margin: 0.3rem;
  display: flex;
  flex-flow: column;
}
@media only screen and (min-width: 992px) {
  .column {
    flex-flow: row;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

p {
  padding: 10px;
}

a {
  color: green;
}
a:visited {
  color: blue;
}
a:hover {
  color: red;
  transition: 0.5s;
}
a:active, a:focus {
  color: teal;
}

img {
  max-width: 100%;
}

.image {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .image {
    width: 50%;
  }
}

.full {
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .full {
    width: 48%;
  }
}

/* Image tip animation */
.tip img {
  transition: transform 0.2s ease-out;
  transform: translateX(15%) rotateZ(-11deg) scale(0.87);
  display: block;
  overflow: hidden;
  min-height: 50px;
  margin-left: 3px;
  transform-origin: 0 100%;
  border-radius: 11px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
}
.tip img:hover {
  transform: translateX(15%) rotateZ(0) scale(0.87);
}

/* Gradient box */
.gbox_background {
  background: #232323;
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.border {
  border: 2px solid #6a0000;
  border-radius: 13px;
  width: 80%;
}

.gbox {
  background: red;
  background: linear-gradient(47deg, red 10%, rgba(0, 0, 0, 0.4429971818) 100%);
  width: 100%;
  height: 180px;
  margin: auto;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.gbox:hover {
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  opacity: 0;
}

/* Copy Paste */
.copy_paste {
  flex-flow: column;
  display: flex;
}

.done {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(-1em);
  color: #000;
  transition: all 0.5s;
}

.copied .done {
  opacity: 1;
  transform: translateY(-2em);
}

.input {
  margin-bottom: 2.5rem;
}

button {
  position: relative;
  padding: 8px 20px;
  border: 0;
  font-size: 0.835em;
  text-transform: uppercase;
  letter-spacing: 0.125em;
  font-weight: bold;
  color: #FFF;
  background: #e60023;
  transition: background 0.375s;
}
button:hover, button:focus {
  background: #212121;
}

button,
input {
  font-size: 1em;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

header {
  max-width: 1400px;
  margin: 0 auto;
}
header nav {
  margin: 0 1.3rem;
  padding: 0.2rem 0.5rem;
  background: burlywood;
}
header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: block;
}
@media only screen and (min-width: 768px) {
  header nav ul li {
    display: inline;
  }
}

.btn {
  padding: 12px 50px;
  border: none;
  border-radius: 5px;
  background-color: #1abc9c;
  color: #fff;
  font-size: 18px;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 7px 40px -4px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.btn span {
  position: absolute;
  border-radius: 50%;
  /* To make it round */
  background-color: rgba(0, 0, 0, 0.3);
  width: 200px;
  height: 200px;
  margin-top: -100px;
  /* for positioning */
  margin-left: -100px;
  animation: ripple 1s;
  opacity: 0;
}

/* Add animation */
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(10);
  }
}
.links {
  width: 100%;
}

.colors {
  background: red;
}
@media only screen and (min-width: 768px) {
  .colors {
    background: green;
  }
}
@media only screen and (min-width: 992px) {
  .colors {
    background: blue;
  }
}

.main {
  width: 50%;
}

.queryimg {
  width: 200px;
}

.main {
  contain: layout inline-size;
}

.card {
  display: flex;
  flex-direction: column;
  background: blue;
}

@container (min-width: 768px) {
  .card {
    flex-direction: row;
    background: green;
  }
}
.main2 {
  contain: layout inline-size;
}

.card2 {
  display: flex;
  flex-direction: column;
  background: orange;
}

@container (min-width: 768px) {
  .card2 {
    flex-direction: row;
    background: red;
  }
}

/*# sourceMappingURL=main.css.map */
