@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&family=Orbitron:wght@400..900&display=swap');

:root{
    --bg-color: #01141d;
    --color-primary: #2EDAF1;
    --color-secondary: #54595F;
    --color-text: #c2c2c2;
    --color-white: #fff;
    --primary-font-family: "Roboto";
    --secondary-font-family: "Roboto Slab";
    --text-font-family: "Orbitron", sans-serif; 
}

.bx{
    color: var(--color-white);
}
/* My hum... body.. yeah.. */
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    background-image: radial-gradient(at center center, #00E1FF24 0%, #01141d 70%);
    font-family: 'Roboto', sans-serif;
    color: #000000;
}

.nav-group{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-group p{
    color: var(--color-white);
}

span.s1 {
    position: absolute;
    top: 30%;
    font-size: 15rem;
    font-weight: 800; /* corrected typo: 800l -> 800 */
    text-transform: uppercase;
    color: #3C4447;
    z-index: -1;
}
  
span.s2 {
    font-weight: 800;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 15rem;
    text-transform: uppercase;
    color: #3C4447;
    z-index: -1;
}

.flex{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: start;
}


.card {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 50px;
    margin-left: 50px;
    background-color: #FFF;
    -webkit-box-shadow: 10px 10px 93px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 93px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 93px 0px rgba(0, 0, 0, 0.75);
}
  
  /* Image on the left side */
.thumbnail {
    float: left;
    position: relative;
    left: 30px;
    top: -30px;
    height: 320px;
    width: 530px;
    -webkit-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    /*object-fit: cover;*/
    /*object-position: center;*/
}
  
img.left {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.right {
    margin-left: 590px;
    margin-right: 20px;
}
  
h1 {
    padding-top: 15px;
    font-size: 1.3rem;
    color: #4B4B4B;
}
  
.author {
    background-color: var(--bg-color);
    height: 30px;
    width: 110px;
    border-radius: 20px;
}
  
.author img {
    padding-top: 5px;
    margin-left: 10px;
    float: left;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}
  
h2 {
    padding-top: 8px;
    margin-right: 6px;
    text-align: center;
    font-size: 0.8rem;
    color: white;
}
  
.separator {
    margin-top: 10px;
    border: 1px solid #C3C3C3;
}
  
.flex p {
    text-align: justify;
    padding-top: 10px;
    font-size: 0.95rem;
    line-height: 150%;
    color: #4B4B4B;
}

.list-cnt{
    font-weight: 600;
}

  /* DATE of release */
  h5 {
    position: absolute;
    left: 30px;
    bottom: -120px;
    font-size: 6rem;
    color: #C3C3C3;
}
  
h6 {
    position: absolute;
    left: 30px;
    bottom: -55px;
    font-size: 2rem;
    color: #C3C3C3;
}
  
  /* Floating action button */
.fab {
    position: absolute;
    right: 50px;
    bottom: -40px;
    box-sizing: border-box;
    padding-top: 18px;
    background-color: #1875D0;
    width: 80px;
    height: 80px;
    color: white;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
    font-size: 3rem;
}


.right-flex{
    margin-right: 50px;
    margin-top: 0px;
    font-size: 5rem;
    color: white;
    width: 50%;
  }

  .right-card{
    width: 90%;
    height: 500px;
    margin: 20px auto;
    background-color: #FFF;
    -webkit-box-shadow: 10px 10px 10px 0px rgba(27, 219, 170, 0.75);
    -moz-box-shadow: 10px 10px 10px 0px rgba(27, 219, 170, 0.75);
    box-shadow: 0px 0px 50px 0px rgba(27, 219, 170, 0.75);
  }
  
  .right-card .img{
    width: 100%;
    height: 200px;
    -webkit-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 60px 0px rgba(0, 0, 0, 0.75);
  }

  .right-card .img img{
    width: 100%;
    height: 100%;
  }
  
  .content{
    padding: 20px;
  }
  
  .content .right-icons{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.5rem;
    color: #01141d;
}

.content .flex-text input{
    width: 95%;
    padding: 10px;
    border: none;
    background-color: rgba(125, 156, 148, 0.3);
    outline: none;
  }
  
  .content .flex-text form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    align-items: center;
    padding: 10px 0;
  }
  
  .content .flex-text input[type = 'submit']{
    margin: 0 auto;
    width: 10em;
    position: relative;
    height: 3em;
    border: 2px ridge #149CEA;
    outline: none;
    background-color: transparent;
    color: #149CEA;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .content .flex-text input[type = 'submit']::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
    transform-origin: center;
  }
  
  .content .flex-text input[type = 'submit']::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: #212121;
    transition: 0.5s;
  }
  .flex-text input[type = 'submit']:hover::before, .flex-text input[type = 'submit']:hover::after {
    transform: scale(0)
  }
  
  .flex-text input[type = 'submit']:hover {
    box-shadow: inset 0px 0px 25px #1479EA;
  }
  

  @media only screen and (max-width: 1024px) {
    .right{
        padding: 10px 20px;
        margin-top: 320px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .list-cnt{
        margin-left: 300px;
    }
    span.s1 {
        z-index: -1;
    }
}

@media only screen and (max-width: 768px) {
  .flex{
    flex-direction: column-reverse;
  }
  span.s1{
      z-index: -1;
      padding-bottom: 10px;
  }
  span.s2{
      bottom: -10%;
  }
  .card{
    width: 90%;
    height: auto;
    margin-left: 5%;
  }
  .thumbnail {
    width: 630px;
  }
  .right{
    margin-left: 30px;
  }
  .right h6{
    left: 500px;
    bottom: -45px;
  }
  .right h5{
    left: 540px;
  }
  .right-flex{
    margin: 0 auto;
  }
  .right-card {
    width: 100%;
  }
  .list-cnt{
    margin-left: 0px;
  }
}

@media only screen and (max-width: 450px) {
  span.s1{
    display: none;
  }
  .thumbnail{
    width: 85%;
  }
  .right h5{
    left: 250px;
    font-size: 5rem;
    bottom: -80px;
  }
  .right h6{
    left: 225px;
  }
  .right-flex{
    margin: 50px auto;
    width: 90%;
  }
  .content .right-icons{
    margin-top: 20px;
  }
  .content .flex-text input[type = 'submit']{
    height: 2.5em;
  }
}

.result {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.flex-text .no-result {
    color: red;
    text-align: center;
    font-weight: 600;
}

.flex-text .no-result .green{
  color: rgb(0, 210, 0);
  text-align: center;
  font-weight: 600;
}


table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}
table th {
    background-color: #f2f2f2;
}