html, body {
margin: 0;
padding: 0;
height: 100%;
background-image: url('/img/bg.png');
background-size: cover;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
overflow: hidden;
}
.border {
min-height: 100vh;
box-sizing: border-box;
border: 3vh solid rgb(7, 7, 7);
display: flex;
flex-direction: column;
justify-content: center;
border-bottom: 6vh solid rgb(7, 7, 7);
}
.header {
background-color: #231b2c8a;
width: 100%;
display: flex;
}
.innerCont {
flex: 1;
display: flex;
width: 100%;
height: 100%;
}
.content {
flex: 1;
}
.footer {
position: absolute;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 6vh;
}
.footer b {
color: white
}
@media (max-width: 600px) {
.border {
box-sizing: border-box;
border: none;
border-bottom: 6vh solid rgb(7, 7, 7);
}
}