html,body { height:100%; }
body {
    margin: 0;
    padding: 0;
    background-color: rgb(88, 117, 143);
}
* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
@font-face {
    font-family: Caligo;
    src: url(Awesome.ttf);
}
a {
    color: inherit;
    text-decoration: none;
}
header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 110px;
    padding: 5px;
    padding-left: 20%;
    padding-right: 20%;
    background-color: rgb(24, 12, 12);
    border-bottom: red 2px solid;
    color: wheat;
    box-shadow: rgb(49, 13, 13) 0px 3px 15px;
    z-index: 10;
    position: relative;
}
header h1 {
    font-family: Caligo;
    font-size: 80px;
    margin: 0;
}
header * {
    text-align: center;
}
.hyperlinks {
    width: 40%;
    font-size: 18px;
    display: flex;
    justify-content: space-evenly;
}
.main {
    width: 100%;
    height: calc(100% - 110px);
    background-color: rgb(70, 70, 70);
    text-align: center;
    display: flex;
}
.leftSide, .rightSide {
    width: 50%;
    height: 100%;
    background-color: #FCEDBD;
    border-left: 1px solid rgb(81, 81, 81);
    border-right: 1px solid rgb(81, 81, 81);
    padding-top: 14px;
    padding-left: 35px;
    padding-right: 35px;
}
.whatsCaligo {
    font-size: 18px;
    text-align: left;
}
.rulebook {
    font-size: 35px;
}

.rightSide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whichGame {
    height: max-content;
    display: flex;
    width: 70%;
    justify-content: left;
    align-items: baseline;
}
.whichGame button {
    height: 20px;
    margin-right: 2px;
    bottom: 0;
    border-radius: 0;
    font-size: 12px;
    border: 2px solid black;
    border-bottom: 0;
}

.schedule {
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    border: 2px solid black;
    background-color: rgb(194, 205, 205);
}
.scheduleElement {
    width: 100%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: 30px;
    background-color: rgb(207, 233, 241);
    border-bottom: 1px solid black;
}
.scheduleElement * {
    border-right: 1px solid black;
    height: 100%;
    width: 60%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}
.scheduleElement:last-child {
    border-bottom: none;
}
.scheduleElement *:last-child {
    border-right: none;
}

.status {
    width: 10%;
}

.submit {
    margin-top: 10px;
    width: 70%;
    display: flex;
    justify-content: space-between;
}
.submit * {
    background-color: rgb(21, 216, 21);
    font-size: 18px;
    font-weight: 500;
    border: 2px black solid;
    border-radius: 15px;
    width: 210px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}

.submitEmbed {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: #00000091;
    top: 0;
    left: 0;
    z-index: 25;
    display: none;
    align-items: center;
    justify-content: center;
}

.embedContainer {
    width: 60%;
    height: 70%;
    border: solid 3px red;
    background-color: rgb(255, 240, 213);
    box-shadow: 0 0  15px  3px black;
}
.embedContainer object {
    width: 100%;
    height: 100%;
}
.cross {
    background-color: red;
    border: 2px solid black;
    width: 20px;
    height: 20px;
    border-radius: 1px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    right: 2px;
    top: 2px;
    position: relative;
    cursor: pointer;
}
.crossContain {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: right;
}
.htmlHolder {
    margin-top: -20px; /*Height of cancel cross*/
}