* {
    box-sizing: border-box;
}

body {
    font-family: "Comic Sans MS", 'Trebuchet 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;
    width: 50%;
    max-width: fit-content;
    min-width: 850px;
    padding: 20px;
    border: 15px double white;
    border-radius: 20px;
    background-color: rgb(255, 243, 131);
    background-image: url("img/bg3.png");
}

#profile {
    display: flex;
    flex-direction: row;
}

#icon-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#icon {
    border-radius: 20px;
}

#bio {
    padding: 20px;
    background-color: white;
    margin-left: 20px;
    border-radius: 20px;
}

#description {
    padding: 20px;
    background-color: white;
    border-radius: 20px;
}


a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    cursor: url("img/cursor-hover.png"), auto;
    color: rgb(255, 143, 39);
}