@font-face {
    font-family: pirateFont;
    src: url(../fonts/POORICH.TTF);
}
* {
	font-family: "pirateFont";
}

body {
	font-size:60px;
	background-color: #0C1E24;
	background-size: 100%;
	background-image: url("../images/sot_bg.png");
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-position: 50% 20%;
}

/* The Modal (background) */
.modal {
	font-size:46px;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	font-size:24px;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 50px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    border-radius: 5px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#container {
	background-color: white;
	margin-top: 100px;
}

.score {
	display: flex;
	flex-direction: column;
	background-color: lightgray;
	opacity: 50%
	padding: 10px;
	border-radius: 5px;
}

#top_bar {
	background-color: lightgray;
	padding: 20px;
	border-radius: 5px;
}
#unbanked_points {
	width: 50px;
	height: 75px;
	padding: 5px;
	margin: 0px auto;
}

.flex-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.button {
    background-color: gray; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 65px;
    border-radius: 5px;
}

#rule_button{
	position: absolute;
	left: 0px;
}

.score {
	padding: 10px;
}

#player0_score {
    position: absolute;
    top: 50%;
    left: 0%;
    margin:20px;
}

#player1_score {
	position: absolute;
    top: 50%;
    right: 0%;
    margin:20px;
}