body {
  word-wrap: break-word;
  background-color: rgb(14, 14, 20);
}

.container {
  padding: 0 12px;
}

.card {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid black;
  width: 1200px;
  padding: 12px;
  margin: 5px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  background-color: black;
  color: white;
  border-radius: 7px;
}

.image img {
  width: 400px;
  border-radius: 9px;
}

.text h1,
p {
  padding: 2px 0;
  font-size: 24px;
  margin-left: 10px;
}

.text p {
  font-size: 14px;
  color: gray;
}

.image {
  position: relative;
}

.capsule {
  position: absolute;
  bottom: 4px;
  z-index: 10;
  right: 5px;
  background-color: #100a0a;
  opacity: 0.9;
  color: white;
  padding: 3px;
  border-radius: 3px;
  font-size: 14px;
}

.btn {
  background: none;
  width: 60px;
  height: 60px;
  border: solid 5px #fff;
  border-radius: 100%;
  position: absolute;
  text-indent: -9999px;
  box-shadow: 1px 1px 3px #999999;
  left: 46%;
  top: 36%;
}

.btn a {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-left: 20px solid #fff;
  border-bottom: 15px solid transparent;
  position: absolute;
  top: 20%;
  left: 36%;
}

.btn:hover {
  background: #4ccaea;
  cursor: pointer;
  opacity: 0.8;
  border: none;
  position: absolute;
  width: 60px;
  height: 60px;
  box-shadow: none;
}

.btn:hover a {
  top: 25%;
  left: 38%;
}

@media only screen and (max-width: 450px) {
  .container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .card {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid black;
    width: 390px;
    padding: 3px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
    color: white;
    border-radius: 7px;
  }

  .image img {
    width: 388px;
    border-radius: 9px;
  }

  .text h1,
  p {
    padding: 2px 0;
    font-size: 13px;
  }

  .text p {
    font-size: 10px;
    color: gray;
  }

  .image {
    position: relative;
  }

  .capsule {
    position: absolute;
    bottom: 4px;
    z-index: 10;
    right: 5px;
    background-color: #100a0a;
    opacity: 0.9;
    color: white;
    padding: 3px;
    border-radius: 3px;
    font-size: 14px;
  }

  .btn {
    background: none;
    width: 60px;
    height: 60px;
    border: solid 5px #fff;
    border-radius: 100%;
    position: absolute;
    text-indent: -9999px;
    box-shadow: 1px 1px 3px #999999;
    left: 43%;
    top: 34%;
  }

  .btn a {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 20%;
    left: 36%;
  }

  .btn:hover {
    background: #4ccaea;
    cursor: pointer;
    opacity: 0.8;
    border: none;
    position: absolute;
    width: 52px;
    height: 52px;
    box-shadow: none;
  }

  .btn:hover a {
    top: 25%;
    left: 38%;
  }
}


@media only screen and (max-width: 600px) and (min-width: 450px) {
  .container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .card {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid black;
    width: 543px;
    padding: 3px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
    color: white;
    border-radius: 7px;
  }

  .image img {
    width: 540px;
    border-radius: 9px;
  }

  .text h1,
  p {
    padding: 2px 0;
    font-size: 14px;
    word-wrap: break-word;
  }

  .text p {
    font-size: 11px;
    color: gray;
  }

  .image {
    position: relative;
  }

  .capsule {
    position: absolute;
    bottom: 4px;
    z-index: 10;
    right: 5px;
    background-color: #100a0a;
    opacity: 0.9;
    color: white;
    padding: 3px;
    border-radius: 3px;
    font-size: 14px;
  }

  .btn {
    background: none;
    width: 60px;
    height: 60px;
    border: solid 5px #fff;
    border-radius: 100%;
    position: absolute;
    text-indent: -9999px;
    box-shadow: 1px 1px 3px #999999;
    left: 43%;
    top: 34%;
  }

  .btn a {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 20%;
    left: 36%;
  }

  .btn:hover {
    background: #4ccaea;
    cursor: pointer;
    opacity: 0.8;
    border: none;
    position: absolute;
    width: 52px;
    height: 52px;
    box-shadow: none;
  }

  .btn:hover a {
    top: 25%;
    left: 38%;
  }
}

@media only screen and (max-width: 800px) and (min-width: 600px) {
  .container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .card {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid black;
    width: 620px;
    padding: 3px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
    color: white;
    border-radius: 7px;
  }

  .image img {
    width: 618px;
    border-radius: 9px;
  }

  .text h1,
  p {
    padding: 2px 0;
    font-size: 18px;
    word-wrap: break-word;
  }

  .text p {
    font-size: 12px;
    color: gray;
  }

  .btn {
    background: none;
    width: 60px;
    height: 60px;
    border: solid 5px #fff;
    border-radius: 100%;
    position: absolute;
    text-indent: -9999px;
    box-shadow: 1px 1px 3px #999999;
    left: 48%;
    top: 39%;
  }

  .btn a {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 20%;
    left: 36%;
  }

  .btn:hover {
    background: #4ccaea;
    cursor: pointer;
    opacity: 0.8;
    border: none;
    position: absolute;
    width: 52px;
    height: 52px;
    box-shadow: none;
  }

  .btn:hover a {
    top: 25%;
    left: 38%;
  }
}

@media only screen and (max-width: 1000px) and (min-width: 800px) {
  .container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .card {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    border: 2px solid black;
    width: 650px;
    padding: 3px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
    color: white;
    border-radius: 7px;
  }

  .image img {
    width: 648px;
    border-radius: 9px;
  }

  .text h1,
  p {
    padding: 2px 0;
    font-size: 19px;
    word-wrap: break-word;
  }

  .text p {
    font-size: 13px;
    color: gray;
  }

  .btn {
    background: none;
    width: 60px;
    height: 60px;
    border: solid 5px #fff;
    border-radius: 100%;
    position: absolute;
    text-indent: -9999px;
    box-shadow: 1px 1px 3px #999999;
    left: 48%;
    top: 39%;
  }

  .btn a {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 20%;
    left: 36%;
  }

  .btn:hover {
    background: #4ccaea;
    cursor: pointer;
    opacity: 0.8;
    border: none;
    position: absolute;
    width: 52px;
    height: 52px;
    box-shadow: none;
  }

  .btn:hover a {
    top: 25%;
    left: 38%;
  }
}

@media only screen and (max-width: 1500px) and (min-width: 1000px) {
  .container {
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .card {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    border: 2px solid black;
    width: 1111px;
    padding: 3px;
    margin: 5px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    background-color: black;
    color: white;
    border-radius: 7px;
  }

  .image img {
    width: 350px;
    border-radius: 9px;
  }

  .text h1,
  p {
    padding: 2px 0;
    font-size: 23px;
    word-wrap: break-word;
  }

  .text p {
    font-size: 13px;
    color: gray;
  }

  .btn {
    background: none;
    width: 60px;
    height: 60px;
    border: solid 5px #fff;
    border-radius: 100%;
    position: absolute;
    text-indent: -9999px;
    box-shadow: 1px 1px 3px #999999;
    left: 43%;
    top: 33%;
  }

  .btn a {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 20px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 20%;
    left: 36%;
  }

  .btn:hover {
    background: #4ccaea;
    cursor: pointer;
    opacity: 0.8;
    border: none;
    position: absolute;
    width: 52px;
    height: 52px;
    box-shadow: none;
  }

  .btn:hover a {
    top: 25%;
    left: 38%;
  }
}
