
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 100;
    font-style: normal;
}

body {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fff;
    color: #333;
}

#Title-Box {
    display: flex;
    justify-content: center;
}

#Title-Box h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
}

#Title-Box:hover{
    h1 {
        letter-spacing: -10px;
        color: #A41623;
    }
}

.List {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.Card {
    cursor: pointer;
    padding: 20px 0;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Card:hover {
    transform: translateY(-10px);
    color: #A41623;
}

.Details {
    flex: 1;
}

.Details h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.Details h3 {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.Card img {
    width: 256px;
    height: 256px;
    object-fit: fill;
    border-radius: 4px;
    margin-left: 20px;
}

hr {
    border: none;
    height: 1px;
    background-color: #ddd;
    margin: 0;
}
