* {
    box-sizing: border-box;
}

body {
    font-family: "Comic Sans MS", Georgia;
    color: rgb(255, 187, 0);
    background-color: rgb(255, 187, 0);
    background-image: url("img/bg.png");
    cursor: url("img/cursor.png"), auto;
}

#main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    overflow: scroll;
    border: 15px double white;
    border-radius: 20px;
    background-color: rgb(255, 243, 131);
    background-image: url("img/bg3.png");
    width: 40%;
    max-width: fit-content;
    min-width: 800px;
    height: 100%;
    padding: 20px;
}

#info {
    max-height: 300px;
    overflow: scroll;
    padding: 10px;
    color: rgb(255, 143, 39);
    background-color: white;
    border-radius: 20px;
}

#info h1 {
    margin: 0%;
}

#info img {
    height: 100px;
    margin: auto;
    display: block;
}

#profiles {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-height: 570px;
    overflow: scroll;

}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    cursor: url("img/cursor-hover.png"), auto;
    color: rgb(255, 143, 39);
}

.profile {
    display: flex;
    max-height: 170px;
}

.icon img {
    width: 170px;
    border-radius: 20px;
}

.description {
    margin-left: 20px;
    padding-left: 10px;
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
}

.description h2 {
    margin-top: 10px;
    margin-bottom: 0%;
    font-size: x-large;
}

.shortdesc {
    font-weight: bold;
    text-decoration: underline;
}

.description p {
    margin-top: 0%;
    margin-bottom: auto;
    font-size: 15px;
}

.description.graham .shortdesc {
    color: rgb(122, 114, 226);
}

.description.nate .shortdesc {
    color:rgb(86, 175, 235);
}

.description.steph .shortdesc {
    color:rgb(250, 124, 172);
}