.noto-emoji-400 {
  font-family: "Noto Emoji", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #ffffff;
}

.app {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: auto;
    background: #161321;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

#currentcard {
    background: antiquewhite;
    width: 40vw;
    height: 60vw;
    border: 0.4vw solid #000000;
    border-radius: 6vw;
    padding: 2vw 3vw;
    box-sizing: border-box;
    user-select: none;
}

.cardcorners {
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cardcornerrow {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.cardcorner {
    text-align: center;
    font-size: 6vw;
}

.cardbottom {
	transform: rotate(180deg);
}

.cardsuit {
    top: 0vw;
    position: relative;
    font-size: 4vw;
    font-family: "Noto Emoji", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.cardface {
    padding: 2wh 0 2wh 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    overflow-wrap: anywhere;
    align-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}


#bigsymbol {
	font-size: 18vw;
	position: absolute;
}
#topsymbols, #bottomsymbols{
	display: flex;
	font-size: 7vw;
	width: 100%;
	height: 50%;
	line-height: 8vw;
	align-content: center;
	flex-wrap: wrap;
	justify-content: center;
}
#bottomsymbols {
	transform: rotate(180deg);
}


.sidedisplay {
    width: 26vw;
    color: white;
    font-weight: 700;
    font-size: 6vw;
    text-align: center;
}

.centercontainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.buttoncontainer {
    display: flex;
    justify-content: space-evenly;
    height: 50vw;
    align-items: center;
    flex-direction: column;
}
.label{
	justify-self: center;
	align-self: center;
	color: white;
	font-weight: 700;
	font-size: 6vw;
}
button {
	cursor: pointer;
    width: 16vw;
    height: 8vw;
    font-size: 3vw;
    border-radius: 1vw;
	display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
	user-select: none;
}
#endscreen {
	opacity:0;
	visibility: hidden;
    display: flex;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff7d;
    align-items: center;
    justify-content: center;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
.endwindow {
    position: absolute;
    width: 80%;
    height: 40%;
    background: whitesmoke;
    border-radius: 2vh;
    display: flex;
    flex-direction: column;
    padding: 1%;
    box-sizing: border-box;
}

.endbuttoncontainer {
    display: flex;
    width: 100%;
    height: 20%;
    bottom: 0;
    justify-content: space-evenly;
    align-items: center;
}

.scorebox {
    height: 40%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.scoreholder {
    width: 20%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 2vh;
    text-align: center;
}
.messageholder {
    width: 100%;
    height: 20%;
    text-align: center;
    font-size: 3vh;
    font-weight: bold;
}
.messageholder2 {
    display: flex;
    width: 100%;
    height: 20%;
    text-align: center;
    font-size: 2vh;
    align-items: center;
    justify-content: center;
}
@keyframes fadein{
	0% {opacity:0%}
	100% {opacity:100%}
}
#infopage {
	opacity:0;
	visibility: hidden;
    display: flex;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff7d;
    align-items: center;
    justify-content: center;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	user-select:none;
}
#infobutton {
    cursor: pointer;
    background: #ffffff60;
    padding: 1vh;
    height: 3vh;
    width: 3vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-family: monospace;
    font-size: 2vh;
    border-radius: 100%;
    position: absolute;
    top: 1vh;
    left: 1vh;
    user-select: none;
}
#infobutton:hover{
	background: #ffffffcc;
}
.windowcloser {
    width: 100%;
    height: 100%;
    cursor: pointer;
}