* {
    margin: auto;
    padding: auto;
    border: 0;
}

html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    color: #b95a42;
    background-color: #e4c7af;
}

.player,
.computer {
    display: flex;
    flex-direction: column;
}

.options {
    display: flex;
    flex-direction: row;
}

img {
    height: 100px;
    width: 100px;
    opacity: 0.6;
}

.option {
    border-style: solid;
    border-color: rgb(0, 0, 0, 0.6);
    border-radius: 5px;
    border-width: 4px;
    margin: 10px 10px 0 10px;
    box-shadow: 3px 3px #b95a42;
}

.player .option:hover {
    border-color: rgb(0, 0, 0, 0.7);
    background-color: rgb(0, 0, 0, 0.1);
}

.player .option:hover img {
    opacity: 0.7;
}

.selected {
    border-color: rgb(0, 0, 0, 0.7);
    background-color: rgb(0, 0, 0, 0.1);
    box-shadow: 3px 3px #264653;
}

.selected img {
    opacity: 0.7;
}

h1 {
    font-size: 50px;
    margin-bottom: 0px;
}

h2 {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 200;
    margin-bottom: 40px;
}

h3 {
    font-size: 24px;
}

h4 {
    margin-top: 0px;
    font-size: 18px;
    margin-bottom: 0px;
}

h5 {
    margin-top: 10px;
    font-size: 60px;
    color: rgba(0, 0, 0, 0.7);
    text-shadow: 2px 2px #b95a42;
}

.player {
    margin-bottom: 30px;
    margin-top: 0px;
}

.computer {
    margin-bottom: 50px;
    margin-top: 0px;
}
