.daisy {
    color: rgb(128, 128, 128);
    font-family: 'Courier New', Courier, monospace;
    background-color: rgb(0, 0, 0);
    padding: 5px;
    overflow-x: hidden;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: rgb(45, 45, 45);
    color: rgba(189, 189, 189, 0.6);
    margin: 20px;
}

.metal-mania-regular {
  font-family: "Metal Mania", system-ui;
  font-weight: 400;
  font-style: normal;
}


body::selection {
    color: rgb(253, 253, 253);
    background-color: rgba(75, 75, 75, 0.5);
}

header {
    text-align: center;
    background-image: linear-gradient(to bottom right, rgba(255, 0, 0, 0.5), rgb(45, 45, 45));
    border-radius: 10px;
    padding: 10px;
    color: rgb(0, 0, 0);
}

.Criteria {
    color: rgba(255, 255, 255, 0.5);
    font-size: large;
}

.top-picks {
    /* background-color: red; /* THIS IS FOR DEVELOPMEMT */
    padding: 10px;
    display: flex;
}

.frame {
    /*border: 2px solid white;*/
    width: 30%;
    text-align: center;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    background-image: linear-gradient(to bottom, rgba(255, 0, 0, 0.5), rgb(45, 45, 45));
}

.frame h2{
    color: rgb(0, 0, 0);
}

.frame img {
    width: 100%;
    border-radius: 10px;
    max-height: 250px;
    object-fit: cover;
    transition: all .2s ease-in-out; 
    justify-content: center;
}

.tier_list {
    width: 100%;
    min-height: 20px;
    /*background-color: red;*/
    padding: 5px;
}

.tier_text {
    padding: 10px;
    display: inline-block;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    font-size: 25px;
}

.tier_rank {
    background-image: linear-gradient(to right, rgba(255, 0, 0, 0.5), rgb(45, 45, 45));
    width: 100%;
    min-height: 30px;
    border-radius: 10px;
    /*border: 2px solid white;*/
    margin: 10px;
    display: flex;
    flex-direction: row;
}

.tier_img {
    padding: 5px;
    border-radius: 10px;
    height: 100px;
}

