body {
    background-color: rgb(0, 0, 0);
}

h1 {
    color: white;
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 15px;;
    background-color: rgb(14, 80, 89);
}

p {
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.04em;
    margin-top: 40px;
}
.intro {
    width: 800px;
    margin: auto;
    margin-top: 25px;
    text-align: center;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.04em;
    font-size: 20px;;
}

.instructions {
    animation: blink 1s infinite;
}
.paragraphs {
    background-color: black;    
    color: white;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 20px;
    font-size: 20px;
    width: 800px;
    margin: auto;
    margin-top: 25px;
    border-radius: 10px;
}

.first-line {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rock, .paper, .scissors {
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
    border: none;
    background-color: rgb(46, 118, 144);
    padding: 10px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px;
    cursor: pointer;
}

.rockpaperscissors {
    text-align: center;
    margin-top: 30px;
}


.computerwins, .userwins, .tiewins {
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.04em;
    font-size: 20px;
    text-align: center;
    margin-top: 20px;
}

.userwins {
    margin-top: 80px;
}

.tiewins {
    margin-bottom: 80px;
}

footer {
    text-align: center;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 0.05em;
    font-size: 15px;
    line-height: 1.5;
}
/*animations*/

@keyframes blink {
    50% { opacity: 0; }
}