:root {
    --main-bg-color : #1b646983;
    --main-header-color : lightblue;
    --main-btn-color : #ece7f7;
    --main-btn-back-color : rgba(255, 0, 138, 0.5);
}

body {
    background-color: var(--main-bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

* {
    margin: 0;
}

header {
    display: flex;
    border-bottom-left-radius: 135px;
    border-bottom-right-radius: 155px;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: var(--main-header-color);
}

header a {
    margin: 15px;
    text-decoration: none;
}

#logo {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 45px;
    font-weight: bold;
}

.R {
    color: red;
}

.P {
    color: purple;
}

.S {
    color: seagreen;
}

#aboutme {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-style: oblique;
    color: rosybrown;
}

h1 {
    margin: 50px 0px 50px 0px;
    text-align: center;
}

.hero {
    display: flex;
    flex-basis: auto;
    justify-content: space-around;
}

.howto {
    margin-top: 25px;
    font-size: 25px;
    width: 15%;
}

.rules li {
    margin-top: 25px;
    font-size: 25px;
}

@media screen and (max-width: 600px) {
    .myimage {
        display: none;
    }
    .howto {
        width : 50%;
    }
}
h2 {
    margin: 25px;
    text-align: center;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* This line ensures that main takes up the remaining space */
}

.buttones {
    display: flex;
    margin: 3rem;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;

}

button:hover {
    background-color: pink;
    cursor:grab;
}

button:active {
    cursor:grabbing;
}

#rock, #paper, #scissors {
    width: 150px;
    background-color: var(--main-btn-back-color);
    border: none;
    border-radius: 2em;
    font-size: 35px;
    color: var(--main-btn-color);
}

.answer {
    font-size: 35px;
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 50px;
}

.restart {
    display: flex;
    justify-content: center;
}

#restart-btn {
    background-color: #13064183;
    padding: 25px;
    text-align: center;
    margin: 50px;
    border: none;
    border-radius: 2em;
}

footer {
    min-height: 25px;
    text-align: center;
    font-size: 15px;
    background-color: var(--main-header-color);
    border-top-right-radius: 135px;
    border-top-left-radius: 135px;
}
