* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
overflow-x: hidden;
}

.container {
    margin: 0 auto;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #f7df07;
}

.search-container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin-bottom: 40px;
    background-color: #222;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.search-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.search-container input[type=text] {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.search-container input[type=submit] {
    background-color: #f7df07;
    color: #222;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 18;
}

.album-cover {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    /*transform: rotate(-10deg); */
    box-shadow: 2px 2px 0 #f7df07;
}

.result-item {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transform: rotate(10deg);
    box-shadow: -2px 2px 0 #f7df07;
}

.year {
  position: absolute;
  top: -12px;
  right: 2px;
  font-size: 1.5em;
  font-weight: bold;
  color: #f7df07;

}

.result-info {
    color: #fff;
    text-align: center;
    padding-top: 10px;
    max-height: 80px;
}

.result-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.result-info p {
    font-size: 18px;
    margin-bottom: 5px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding: 10px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    .col-md-6 {
        flex-basis: 33.33%;
        max-width: 33.33%;
    }
}

@media screen and (min-width: 992px) {
    .col-md-6 {
        flex-basis: 25%;
        max-width: 25%;
    }
    
    .row-cols-3 {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .col-lg-4 {
        flex-basis
