/* Text left float */
img{
    float:left;
    width:120px;
    margin:10px;
}
/*big blue box around Dave Mustaine and the text*/
.box{
    border:2px solid blue;
    padding:15px;
    margin:20px;
    overflow:auto;
}
/* Flexbox, puts all the things that he's associated with next to each other while leaving spaces between the words */
.flex{
    display:flex;
    gap:10px;
    margin:20px;
}
/*creates the boxes around all the terms*/
.flex div{
    border:2px solid black;
    padding:15px;
}