@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
	margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}


.main {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
	align-content: center;
	
}

article {
	flex: 1;
	margin-left: auto;
	margin-right: auto;	
}

header {
   	overflow: hidden;
    height: 75px;
	width: 750px;
	border-radius: 35px;
	background: white;
	padding: 14px;
	margin-top: 2%;
	margin-left: auto;
	margin-right: auto;
	font-family: 'Anton', sans-serif;
 
}

header p {
	font-size: 64px;
    text-align: center;
	margin-top: 28px;
	color: #00000;
	
}

.page {
	margin: auto;
    padding:2em;

}

.about-container {
	display: flex;
	position: relative;
	z-index: 0;
	height: 160px;
	overflow: hidden;	
}

.about-left {
    display: flex;
	position: absolute;
	z-index: 2;
	background-color: #b1e2f3;
	height: 75px;
	width: 500px;
	top: 40px;
	left: 4px;
	border-radius: 25px;
	
} 

.about-left p {
	text-align: left;
	font-size: 20px;
	width: 400px;
	height: 10px;
	margin-top: 26px;
	margin-left: 20px;
}

.about-right {
	display: flex;
	position: absolute;
	z-index: 1;
	background-color: #127194;
	height: 160px;
	width: 540px;
	top: 0px;
	left: 460px;
	border-radius: 25px;
	
} 

.about-right p {
    text-align: right;
	font-size: 20px;
	width: 400px;
	height: 100px;
	margin-top: 30px;
	margin-left: 110px;
	color: #ffffff;
	
}

.what-container {
	display: flex;
	overflow: hidden;
	margin-top: 20px;
	position: relative;
	z-index: 0;
	height: 410px;
	width: 1000px;
		
}
.what-right {
	display: flex;
	position: absolute;
	z-index: 1;
	background-color: #b1e2f3;
	height: 150px;
	width: 540px;
	top: 0px;
	left: 460px;
	border-radius: 25px;
	
} 

.what-right p {
    text-align: right;
	font-size: 14px;
	width: 400px;
	height: 100px;
	margin-top: 20px;
	margin-left: 110px;
	color: #00000;
	
}

.computer {
	display: flex;
	position: absolute;
	background-color: #127194;
	height: 220px;
	width: 450px;
	top: 200px;
	left: 550px;
	border-radius: 25px;
	
	
}

.computer img {
	color: #fffff;
	width: 220px;
	height: 180px;
	margin-left: 120px;
	margin-top: 10px
	
	
}


.what-left {
    position: absolute;
	z-index: 2;
	background-color: #127194;
	height: 370px;
	width: 500px;
	top: 40px;
	left: 8px;
	border-radius: 25px;
	
} 

.what-left li {
	text-align: left;
	font-size: 12.5px;
	width: 450px;
	margin-left: 32px;
	padding: 4px;
	margin-top: 11px;
	color: #ffFFFF;
}

.contact-container {
	display: flex;
	overflow: hidden;
    height: 50px;
	width: 750px;
	border-radius: 25px;
	background: white;
	padding: 10px;
	margin-left: auto;
	margin-right: auto;
	
		
}

.contact-container > div {
  	width: 220px;
  	margin: 21px;
	margin-top: 10px;
  	text-align: center;
  	font-size: 30px;
  	
}

a {
	color: black;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {
    overflow: hidden;
    background: #FFFFF;
    margin-left: auto;
	margin-right: auto;
}

#copyright p {
    font-size:.7em;
    text-align: center;
    color: #FFFFFF;
	
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  	visibility: hidden;
  	width: 170px;
	bottom: 30%;
	left: 35%;
	margin-left: -80px;
  	background-color: black;
  	color: #fff;
  	text-align: center;
  	border-radius: 7px;
  	padding: 8px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}