@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
body{
    background-color: #0d1a2d;
    min-height: 100vh;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1,p {
    margin: 0;
}
.prev-image img {
    width: 100%;
    border-radius: 15px;
    position: relative;
}

.box-component {
    background: hsl(216, 50%, 16%);
    width: 292px;
    height: 576px;
    padding: 24px;
    border-radius: 30px;
}
.prev-copy h1 {
    font-size: 26px;
    margin-top: 16px;
    color: hsl(0, 0%, 100%);
    font-weight: 400;
}
.prev-copy p {
    margin-top: 21px;
    color: hsl(215, 51%, 70%);
    font-weight: 300;
    line-height: 27px;
}
.time-and-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 19px;
}
.time {
    font-weight: 600;
    color: hsl(178, 100%, 50%);
    justify-content: center;
    display: inline-flex;
    width: 40%;
}
.day {
    font-weight: 400;
    color: hsl(215, 51%, 70%);
    justify-content: center;
    display: inline-flex;
    width: 42%;
}
.day img {
    width: 21%;
    padding-right: 12px;
}
.time img {
    width: 13%;
    padding-right: 12px;
}
.line {
    border: 1px solid hsl(215, 51%, 70%);
    margin-top: 12px;
}
.creation {
    display: flex;
    margin-top: 18px;
    align-items: center;
}
.avatar img {
    width: 60%;
    border: 2px solid#ffff;
    border-radius: 100%;
}
.avatar-copy {
    width: 100%;
    color: hsl(0, 0%, 100%);
}
.avatar-copy span {
    color: hsl(215, 51%, 70%);
}

.overlay {
    background: hsla(178deg, 100%, 50%, 0.5);
    width: 293px;
    height: 44%;
    position: absolute;
    top: 50px;
    border-radius: 14px;
    opacity: 0;
    cursor: pointer;
}
.overlay:hover{
 opacity: 0.8;
}
.overlay img {
    width: 24%;
    position: absolute;
    top: 43%;
    left: 37%;
}
.prev-copy h1:hover{
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}
.avatar-copy:hover{
    color: hsl(178, 100%, 50%);
    cursor: pointer;
}
@media screen and (min-width: 1400px) {
    .overlay {
        width: 293px;
        height: 38%;
        top: 107px;
    }
  }

