@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
:root {
  --primary-color: rgb(17, 86, 102);
  --primary-color-darker: rgb(9, 48, 56);
}

* {
  box-sizing: border-box;
  outline: 0;
}

body {
  margin: 0;
  padding: 0;
  background: var(--primary-color);
  font-family: 'Open sans', sans-serif;
  font-size: 1.3em;
  line-height: 1.5em;
  text-align: center;
}
button:hover{
  background-color: whitesmoke;
}

.container {
  text-align: center;
  max-width: 640px;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 10px 5px
}

.restart{
  padding: 1% 5%;
  font-size: large;
  border-radius: 500px;
  border: none;
  background-color: white;
  text-align: center;
  max-width: 500px;
  box-shadow: 5px 10px 5px
}
.score{
  display: inline;
  margin-left: 17%;
  margin-right: 17%;
}

.camp{
  padding: 15%;
  background-color: white;
  border: insert;
  color: white;
}
.left-border{
  border-left: white;
}
.top-border{
  border-top: white;
}
.right-border{
  border-right: white;
}
.bottom-border{
  border-bottom: white;
}
.thcls{
  display: block;
  font-size: 1.5em;
}
a:link, a:visited{
  color: white;
  text-decoration: none;
}
a:hover {
  text-decoration:underline ;
}