@import "compass/css3";

body {
	background-color:black;
	font-family: Arial;
	Color: white;
	display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.speaker {
	width:160px;
	height:100px;
	margin-left:-40px;
	margin-top:-10px;
}

.mainText {
	width:400px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-200px;
	margin-top:-331px;
	font-size:40px;
	font-weight:bold;
	text-align:center;
}

.mainTable {
	width:100%;
	height:100%;
	border-color:red;
}

.topTR, .bottomTR {
	height:50%;
}

.leftTD, .rightTD {
	width:50%;
}

.content {
	text-align:center;
}

.mainLogo {
	width:580px;
	height:422px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-211px;
	margin-left: -290px;
}

.mainName {
	width:522px;
	height:90px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:231px;
	margin-left: -261px;
}


* {
    box-sizing: border-box;
}

.blobs-container {
    display: flex;
}

.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 40px;
    height: 80px;
    width: 80px;
    transform: scale(1);
    animation: pulse-black 1.1s infinite;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-40px;
	margin-top:0px;
}

.blob.orange {
    background: rgba(255, 121, 63, 1);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
    animation: pulse-orange 1.1s infinite;
}

@keyframes pulse-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 121, 63, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 121, 63, 0);
    }
}