2022-04-19 23:54:36 +00:00
|
|
|
body {
|
|
|
|
overflow: none;
|
2022-04-20 00:07:56 +00:00
|
|
|
height: 85vh;
|
2022-04-19 23:54:36 +00:00
|
|
|
}
|
|
|
|
|
2022-04-20 00:07:56 +00:00
|
|
|
.playBtn:hover, .smolBtn:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.playBtn {
|
2022-04-19 23:54:36 +00:00
|
|
|
padding: 0 30px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: none;
|
|
|
|
background: linear-gradient(#ffd326, #ffc61e);
|
|
|
|
color: #704a1d;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 50px;
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
|
2022-04-20 00:07:56 +00:00
|
|
|
.smolBtn {
|
|
|
|
padding: 0 20px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: none;
|
|
|
|
background: linear-gradient(#ffd326, #ffc61e);
|
|
|
|
color: #704a1d;
|
|
|
|
font-weight: bold;
|
|
|
|
height: 40px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#bottomBar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
padding: 20px 0px;
|
|
|
|
}
|
|
|
|
|
2022-04-19 23:54:36 +00:00
|
|
|
#halvesContainer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#firstHalf, #secondHalf {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#firstHalf {
|
|
|
|
border-right: 1px solid black;
|
|
|
|
}
|