* {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
:root {
    --color: white;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 2rem;
}
button, input, select {
    border: none;
}
button {
    cursor: pointer;
}
img {
    width: 30px;
    height: 30px;
}
.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20vw;
}
.content__left {
    display: grid;
    justify-content: end;
    align-items: center;
}
.container__left__buttons {
    display: grid;
    gap: 1rem;
}
.container__left__buttons__up {
    height: 53px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.container__left__buttons__up button, .copy-button{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 53px;
    align-items: center;
}
#minecraftNickname {
    width: 350px;
    height: 50px;
    padding: .5rem;
    padding-left: 1rem;
}
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    text-align: center;
}
.content__right {
    width: 350px;
}
#output {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}
.content_left_inside input {
    margin-bottom: 1rem;
}
.theme {
    display: flex;
    justify-content: center;
}
#styleSelector {
    width: 70%;
    padding: .7rem;
}
.content__right {
    display: grid;
    gap: 1rem;
}