body {
    margin: 0;
    font-family: 'Source Sans Pro';
    overflow: hidden;
    background-color: #1F1F1F;
    font-size: 20px;
    color: white;
}
.card {
    background-color: #A291FF;
    border-radius: 20px;
    width: 600px;
    padding: 40px;
    height: 325px;
    margin-left: 400px;
    margin-top: 150px;

}

.search {
    display: flex;
}

.search input {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

input {
    align-self: center;
    height: 28px;
    padding-left: 40px;
    background: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.logo {
    width: 30px;
    position: absolute;
    top: 45px;
    left: 100px;
}

.column, .row {
    display: flex;
}

.column {
    flex-direction: column;
    height: 250px;
    justify-content: space-between;
}

.row {
    flex-direction: row;
    justify-content: space-between;
}

.genres {
    background-color: white;
    border-radius: 10px;
    color: #1F1F1F;
    -webkit-box-shadow: 5px 4px 15px 1px rgba(145,130,229,0.34); 
    box-shadow: 5px 4px 15px 1px rgba(145,130,229,0.34);
    padding-left: 15px;
    width: 275px;
    height: 50px;
}

.genres p {
    margin-top: 10px;
}

.genres:hover {
    background-color: #7962F4;
    color: white;
    transition: all 300ms ease-in-out;
}

button {
    width: 280px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 25px;
    background-color:#7962F4;
    border: none;
    color: white;
    font-size: 15px !important;
    height: 40px;
    font-family: 'Source Sans Pro';
    -webkit-box-shadow: 5px 4px 15px 1px rgba(61, 61, 61, 0.34); 
    box-shadow: 5px 4px 15px 1px rgba(61, 61, 61, 0.34);
    margin-top: 20px;
    margin-left: 800px;
}