.title {
    font-size: xx-large;
}

.form-container {
    max-width: 700px;
    min-height: 600px;
    margin: auto;
    position: relative;
}

.artists-container {
    white-space: nowrap;
    width: 700px;
}

.artist-item {
    width: 120px;
    max-height: 150px;
    padding: 10px;
    margin: 5px;
    border-radius: 7px;
    vertical-align: top;
}

.artist-item img {
    width: 100px;
    height: 100px;
    border-radius: 7px;
}

.artist-item:hover {
    background-color: #DCDCDC;
}

.artist-item a {
    text-decoration: none;
    color: black;
}

.artist-item p {
    white-space: normal;
}