@font-face {
    src: url('ford-font/Fordscript.ttf');
    font-family: 'Ford';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

.card {
    margin: 0 auto;
    max-width: 600px;
    display: flex;
    margin-top: 100px;
    background: #263cff29;
    padding: 40px;
    justify-content: space-around;
    text-align: center;
    border-radius: 10px;
    border-bottom: 5px solid orange;
    box-shadow: inset 0px 1px 10px 5px #30d39738;
}

.card-img {
    width: 200px;
    border-radius: 10px;
}

.details {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.details h3 {
    font-size: 50px;
    font-family: 'Ford';
}