@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap');

:root {
  --main-bg-color: #37a4eb;
}

html {
  box-sizing: border-box;
}

body{
  font-family: 'Lato', sans-serif;
  color: var(--main-bg-color);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  height: 250px;
  width: 300px;
  overflow: hidden;
  visibility: hidden;
  background-color: rgb(192, 219, 236);
}

/* Intro */

svg{
  z-index: 10;
}

#logo {
  position: absolute;
  top: 0;
  left: 0;
}

h1{
  position: absolute;
  top: 0px;
  font-weight: 400;
  font-size: 1.3rem;
}

h2{
  position: absolute;
  top: 185px;
  font-weight: 300;
  font-size: 1rem;
}

.title1{
  position: absolute;
  left: 30px;
}

.subTitle1{
  position: absolute;
  left: 30px;
}

.title2{
  position: absolute;
  left: 30px;
}

.subTitle2{
  position: absolute;
  left: 30px;
}

.title3{
  position: absolute;
  left: 30px;
}

.subTitle3{
  position: absolute;
  left: 30px;
}

.title4{
  position: absolute;
  left: 30px;
}

.subTitle4{
  position: absolute;
  left: 30px;
}

.web{
  position: absolute;
  left: 30px;
}


.education_icons{
  clip-path: url(#mask_top);
}

#titleWrapper{
overflow: hidden;
height: 120px;
line-height: 68px;
width: 288px;
position: absolute;
left: 0px;
top: 130px;
}



















/* End */




/* Code below for the button */

.btn {
  height: 30px;
  width: 60px;
  background-color: rgb(0, 0, 0);
  position: fixed;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  left: 10px;
  z-index: 100;
  color: white;
  box-shadow: none;
  border: none;
  font-size: 15px;
  border: 1px solid black;
}

.btn:hover {
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.8);
}

#pause {
  left: 10px;
  top: 260px;
}


/* Mask */

/* #id element {
  clip-path: url(#myMask);
} */

