/*Fonts*/
@font-face {
  font-family: Roboto-B;
  src: url(./Fonts/RobotoMono-Bold.ttf);
}
@font-face {
  font-family: edu-R;
  src: url(./Fonts/Edu-Regular.ttf);
}
@font-face {
    font-family: F-R;
    src: url("./Fonts/Fredoka-Regular.ttf");
}
body {
  background: rgb(2,0,75);background: linear-gradient(217deg, rgba(2,0,75,1) -20%, rgb(0, 30, 29) 30%, rgba(0,17,29,1) 50%);
  background-repeat: no-repeat;
  background-size: cover;
  height: 2160px;
  overflow: hidden;
}
.box {
    width: 280px; height: 320px;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid gray;
    border-radius: 25px;
    display: inline-block;
    cursor: pointer;
    transition: 0.6s ease-in-out;
}
.box:hover {
    scale: 1.07 !important;
    border-radius: 15px;
    box-shadow: 0px 0px 25px 5px #363636;
}
.box1 {
    margin-left: 0;
    margin-top: 20px;
    cursor: pointer;
}
.box2 {
    margin-left: 60px;
    margin-top: 0;
    cursor: pointer;
}
.img {
    width: 170px; height: 170px;
    margin-top: 12px;
    /*background-color: #ffffff;*/
    border: none;
    border-radius: 20px;
    padding: 25px 25px;
    scale: 0.9;
}

.span{
    color: #ffffff;
    font-family: Roboto-B, serif;
    font-size: 23px;
    margin-top: 20px;
    display: inline-block;
    transition: 0.6s ease-in-out;
}

.tag{
    background-color: #000;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border: 2px solid white;
    height: 65px;
    font-size: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    font-family: F-R, serif;
    cursor: default;
    transition: 0.6s ease-in-out;
}
.tag:hover{
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Iphone SE*/
@media only screen and (min-width: 375px) and (max-width:380px) {
    .tag{
        width: 300px;
        height: 40px;
        font-size: 25px;
        margin-left: 0;
    }
    .box {
        width: 230px; height: 250px;
    }
    .box1 {
        margin-left: 0;
        margin-top: 20px;
    }
    .box2 {
        margin-left: 0;
        margin-top: 20px;
    }
    .span{
        margin-top: -15px;
        font-size: 23px;
    }
    .img {
        width: 140px; height: 140px;
    }
}

@media only screen and (min-width: 380px) and (max-width:600px) {
  .tag{
      width: 330px;
      height: 40px;
      font-size: 25px;
      margin-left: 0 ;
  }
  .box {
        width: 270px; height: 300px;
  }
  .box1 {
      margin-left: 0;
      margin-top: 30px;
  }
  .box2 {
      margin-left: 0;
      margin-top: 20px;
  }
  .img {
      width: 150px; height: 150px;
  }
}

@media only screen and (min-width: 600px) {
  .tag {
    width: 450px;
  }
  .box1 {
    margin-left: 0;
    margin-top: 60px;
  }
  .box2 {
    margin-left: 50px;
    margin-top: 20px;
  }
}