body {
    font-family: 'Merriweather', serif;
    color: #fff;
}

h1 {
    text-align: center;
}

img {
    width: 100%;
}

#sim-artist-header {
    font-size: 20px
}

#artist-header {
    font-size: 20px
}

#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#search {
    width: 35%
}

#form input[type=submit] {
    font-size: 20px;
    background-color: blueviolet;
    border-radius: 20px;
    border: blueviolet 1px solid;
    color: white;
    margin-top: 1vw;
    width: 20vw;
}

#form input[type=submit]:hover {
    background-color: transparent;
    color: blueviolet;
    cursor: pointer;
}

#form input[type=text] {
    font-size: 35px;
}

body {
    background-color: rgb(20, 20, 20);
}

#grid {
    display: flex;
    text-align: left;
    margin-left: 2vw;
    margin-right: 2vw;
    margin-top: 2vw;
    margin-bottom: 5vw;
}

#artist-info {
    margin-right: 2vw;
    width: 30%;
    padding: 1%;
}

#search-results {
    width: 70%;
    padding: 1%;
}

.background-class {
    background-color: rgba(88, 88, 88, 0.212);
    border-radius: 15px;
}

.artist-block-1 {
    padding: 3%;
    width: 40%;
}

.artist-block-2 {
    width: 60%;
    padding: 3%;
}

.artist-div {
    display: flex;
    margin-bottom: 2vw;
}

.header-p {
    font-size: 20px;
}

.name-p {
    margin-top: 0;
}

#short-bio {
    display: none;
}

@media (max-width:812px) {
    #form input[type=text] {
        font-size: 20px !important;
    }
}

@media (max-width:812px) {
    #form input[type=submit] {
        margin-top: 5vw !important;
    }
    #grid {
        flex-direction: column;
    }
}

@media (max-width:812px) {
    #form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%
    }
    #get-artist-button {
        margin-bottom: 30px;
    }
    #artist-info {
        width: 90%;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin-right: 0vw;
        margin-bottom: 50px;
        padding-bottom: 30px;
    }
    .artist-class {
        margin: 3%;
        width: 90%;
    }
    #search-results {
        width: 90%;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin-right: 0vw;
    }
    #artist-div {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 100px
    }
    #search {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 80%
    }
    .artist-div {
        display: block;
        margin-bottom: 2vw;
    }
    .artist-block-1 {
        padding: 3%;
        padding-top: 20px;
        width: 90%;
    }
    .artist-block-2 {
        width: 90%;
        padding: 3%;
    }
    .header-p {
        padding: 10px;
    }
    #long-bio {
        display: none;
    }
    #short-bio {
        display: flex;
        padding-bottom: 10px;
    }
    .bio-p {
        padding-bottom: 20px;
    }
}