body, html { margin: 0; padding: 0; width: 100%; height: 100%; background: #000; overflow: hidden; }
    canvas { display: block; width: 100%; height: 100%; }
    .watermark {
        position: fixed;
        bottom: 20px;
        right: 20px;
        color: #FFFFFF;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        font-size: 8pt;
        text-align: right;
        line-height: 1.5;
        pointer-events: none;
        text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    }
    .watermark .bold { font-weight: bold; }
	
body {
    position: relative;
    z-index: 1;
	background-image: url(images/bg.jpg);
    background-repeat: no-repeat;
	background-size: cover
	

}

#c {
    position: fixed;
    z-index: -1;
}

header {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

p {
    font-family: Arial;
	color: white;
}

h2 {
    font-family: Arial;
    color: white;	
}

h3 {
    font-family: Arial;
    color: white;	
}

button {
    font-family: Arial;
	color: white;	
}

.container {
	width: 930px;
	height: 1100px;
	margin: auto;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
	border:1px solid #181818;
	box-shadow:
        0 3px 2px rgba(0,0,0,.15),
        0 3px 8px rgba(0,0,0,.12);
	border-radius: 5px;
	overflow: hidden;	
	background-image: url(images/innerbg.jpg);
    background-repeat: no-repeat;
	background-size: cover
}

.container::before{
	content:"";
	position: absolute;
	inset: 0;
	backdrop-filter: blur(25px);
	z-index: -1;
}

.extra {
    background-color: rgb(34, 41, 51);
	position: absolute;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background:
        linear-gradient(
          to bottom,
          #2f2f2f 0%,
          #111 100%
        );
	width: 930px;
	height: 30px;
}

.extra img {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.extra p {
    color: white;
	line-height: 1.3;
}

.box{
    background-color: gray;
	width: 650px;
	height: 330px;
	border-radius: 5px;
	border: 1px solid #608ba6;
    box-shadow:
	    0 10px 16px rgba(0,0,0,0.18),
        0 10px 12px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.9);
	overflow: hidden;
	margin-top: 30px;
}

.box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.box h2 {
    z-index 2;	
}

.boxsmall {
    background-color: gray;
	width: 180px;
	height: 150px;
	border-radius: 1px;
	border: 1px solid #000000;
    box-shadow:
	    0 10px 16px rgba(0,0,0,0.18),
        0 10px 12px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.9);
	overflow: hidden;
}

.ad {
	border-radius: 1px;
	border: 1px solid #000000;
	box-shadow:
	    0 10px 16px rgba(0,0,0,0.18),
        0 10px 12px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.9);
	overflow: hidden;
}

.connections {
    background-color: white;
	width: 70px;
	height: 70px;
	border-radius: 5px;
	border: 1px solid #D4DADD;
    box-shadow:
	    0 10px 16px rgba(0,0,0,0.18),
        0 10px 12px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.9);
	
}

.menu {
	width:650px;
	height:35px;
	background:
        linear-gradient(
            to bottom,
            transparent 0%,
            #1a3159 100%
        );
	
}

.menu button{
	margin-top: 10px;
    margin-left: 20px;
}

.tabs {
    background:none;
    border:none;
    margin:0;
    padding:0;
    cursor: pointer;
}

.connections img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.connections h2 {
	position: absolute;
    font-size: 13px;
	margin-left: 82px;
	margin-top: -72px;

}

.connections p {
	position: absolute;
    font-size: 15px;
	margin-left: 83px;
	margin-top: -53px;
    line-height: 1.4;
}

.icon {
	width: 70px;
	height: 70px;
	border-radius: 5px;
	overflow: hidden;
}

.icon img{
     height: 100%;
    width: 100%;
    object-fit: cover;
}

a {
    color: white;
}

a:visited {
    color: white;
}