@import url('https://rsms.me/inter/inter.css');
    html { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
    html { font-family: 'Inter var', sans-serif; }
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}
body {
    background-color:rgb(28,28,28);
    -webkit-font-smoothing: antialiased;
}
a {
	color: inherit;
}
a:hover {
	text-decoration: underline;
}
#content {
	max-width: 512px;
	margin: 0 auto;
	padding: 64px 24px;
}

.header {
    background-image: url(images/rob_512.jpg);
    background-repeat: no-repeat;
    background-size:contain;
    border-radius: 40px;
    margin-bottom: 24px;
 }

.top {
    width: 100%;
    height: auto;
}

.section {
	padding-bottom: 48px;
	margin-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.section:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.me {
    background-image: url(images/cr.png);
    margin-left: auto;
    margin-right: auto;
    width: 80px;
	height: 80px;
	border-radius: 40px;
    margin-bottom: 06px;
    display: flex; justify-content: space-around

}

.certholder {
    	height: 200px;

}

.mitcert {
    padding-top: 110px;
    background-image: url(images/mit.png);
    background-repeat: no-repeat;
    background-size:contain;
	height: 140px;
    width: 170px;
    float:left; 
}

.mscert {
    padding-top: 110px;
    padding-left: 10px;
    background-image: url(images/ms.png);
    background-repeat: no-repeat;
	height: 140px;
    width: 160px;
    float:right;
}

.copyright{ 
    text-align: center;
}

h1 {
	font-weight: 300;
	font-size: 16px;
	margin-bottom: 12px;
}

h2 {
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 16px;
}
.link {
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	margin-right: 12px;
}

.links .link {
	margin-right: 0;
	display: block;
	margin-bottom: 0px;
}
.title {
	font-weight: 600;
    color:white;
	font-size: 36px;
	margin-bottom: 12px;
}
.desc{
  font-size: 18px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
}
	
h6 {
	font-weight: 600;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.64);
	margin-bottom: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
h3 {
	font-weight: 600;
	font-size: 20px;
	line-height: 24px;
	color: #FFFFFF;
	margin-bottom: 6px;
}
p {
	font-size: 16px;
	line-height: 24px;
	color: rgba(255, 255, 255, 0.8);
}
ul li {
	margin-bottom: 32px;
}
ul li:last-of-type {
	margin-bottom: 0;
}

// For browsers that cant mask, just do a border and border-radius
img.icon {
    border-radius: 22.5%;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

// For browsers that can mask, you get the squircle and a 1px border
@supports (mask-size: cover) or (-webkit-mask-size: cover) {
    img.icon {
        // Override the above borders
        border-radius: 0;
        border: none;
        -webkit-mask-image: url(/shared/img/ios-mask-512.svg);
        -webkit-mask-size: cover;
        mask-image: url(/shared/img/ios-mask-512.svg);
        mask-size: cover;
        // more stuff here...
    }
}

/* Type writer effect */

.output {
	height: 70px;
    text-align:left;
    color:white;

}

/* Cursor Styling */

.cursor::after {
    vertical-align:top;
    content:'';
    display:inline-block;
    margin-left:3px;
    background-color:white;
    animation-name:blink;
    animation-duration:0.5s;
    animation-iteration-count: infinite;
}
h1.cursor::after {
  height:16px;
  width:12px;
}
p1.cursor::after {
  height:16px;
  width:10px;
}

@keyframes blink {
  0% {
    opacity:1;
  }
  49% {
    opacity:1;
  }
  50% {
    opacity:0;
  }
  100% {
    opacity:0;
  }
}