@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: "Urbanist", sans-serif;
}

.content{
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100vh;
}

.card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 360px;
    height: 440px;
}

.card:hover{
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px rgba(0, 0, 0);
}

.mediaCard {
    background: url("https://i.pinimg.com/736x/9b/ed/f3/9bedf34a21c019798d0dcf7583ab481c.jpg") center/cover;
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.topCard {
    background-color: #cacaca;
    padding: 5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: 2px;
    margin-bottom: 2px;
}

.title {
    margin-bottom: 10px;
    margin-top: 1px;
    color: white;
}

.subTitle {
    color: white

}

.bottomCard {
    margin-top: -5px;
    padding: 7px;
    margin-bottom: 10px;
    width: 350px;
}
p.bottomText {
    padding-top: 0px;
    margin: 2px;
}

.traced-line-container {
    position: relative;
    margin: 0 8px;
}

.traced-line {
    margin-top: -15px;
    border-top: 1px dotted black; 
    margin-left: 2px;
    margin-right: 2px;
}

.line-content {
    display: flex;  
    justify-content: space-between;
    align-items: center;
    margin-top: -10px;
}

.ep, .rate {
    padding: 0 5px;
}