*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: Arial, Helvetica, sans-serif;
}
html,
body {
     height: 100%;
     width: 100%;
}

#main {
    height: 100%;
    width: 100%;
    background-image: url(https://previews.123rf.com/images/aquir/aquir2307/aquir230701498/208850868-football-player-soccer-player-hand-drawn-comic-illustration-vector-doodle-style-cartoon.jpg);
    background-size: cover;
    padding: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow: auto;
}

#main::-webkit-scrollbar {
  background-color: salmon;
  height: 20px;
}

#main::-webkit-scrollbar-thumb {
    background-color: royalblue;
}

.card {
    height: 300px;
    width: 350px;
    position: relative;
    flex-shrink: 0;
    
}

.card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

.top {
    height: 30%;
    width: 100%;
    background-color: royalblue;
    padding: 25px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.top h1 {
    color: yellow;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}



.semitop {
    height: 20%;
    width: 100%;
    background-color: rgb(48, 46, 46);
    padding: 10px;
}

.semitop h2 {
     color: white;
     font-size: 40px;
     font-weight: 600;
     text-align: center;
     
}

.bottom {
    height: 40%;
    width: 100%;
    background-color: rgb(212, 207, 207);
    position: absolute;
    bottom: -80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.bottom h1 {
    font-size: 30px;
    font-weight: 600;
}

.bottom img {
    height: 40px;
    width: 60px;
    background-color: white;
    border: 2px solid black;
    border-radius: 10px;
    object-fit: cover;
}

