@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Faculty+Glyphic&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300,900&display=swap');
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #505050;
}
#wrapper {
  max-width: 1120px;
  height: 100%;
  margin: auto;
  position: relative;
}
/*************************************For moving eyes*******************************************/
.move-area { /*normally use body*/
  width: 100vw;
  /*height: 100vh;*/
}
.container {
  position: relative;
  width: 360px;
  height: 400px;
  background-image: url("MeHead.png");
  background-repeat: no-repeat;
  background-size: 300px;
  margin: 10px;
  padding-top: 175px;
  padding-left: 75px;
}
.eye {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid black;
  height: 37px;
  width: 37px;
  background-color: #4daffb;
  margin: 0 75px 0 0;
}
.eye::after { /*pupil*/
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  content: " ";
}
.eye::before {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  content: " ";
  z-index: 200;
}
/*************************************End moving eyes*******************************************/
.island-moments-regular {
  font-family: "Island Moments", cursive;
  font-weight: 400;
  font-style: normal;
}
.box{
	position:relative; /*to keep title parts in their positions*/
	display:inline-block; 
	vertical-align: top;
	width:540px; 
	height:500px;
	padding:40px 20px; 
	border-radius: 10px;
	margin:15px 5px;
	text-align: center;
}
.title {
  position: absolute;
  top: -20px;
  width: 300px;
   /* border:1px solid white;*/
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
  padding: 5px;
  margin-bottom: 10px;
}
.textNext {
  display: inline-block;
  width: 300px;
  vertical-align: top;
  margin-left: 10px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: white;
}
.text {
  margin-left: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
	text-align: left;
  color: white;
}
a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
}
a:hover {
   font-size: 17px;
}
.Hi {
  width: 80%;
  margin: 40px auto;
  font-family: Island Moments;
  font-size: 44px;
  line-height: 80%;
  font-weight: 600;
  color: #609BD2;
}
.about {
  position: absolute;
  left: 350px;
	color:#609BD2;
}

.links{
	width:470px;
	text-align: right;
	font-family: 'Montserrat', sans-serif;
    font-size: 16px;
	color:white;
}
.arrow {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
/*************************************Mobile*******************************************/
@media screen and (max-width: 700px) {
  .Hi {
    margin: 20px auto;
    font-size: 36px;
  }
  .about {
    display: none;
  }
	
	.box{
		width:97%;
		height:auto;
			}
	
	.box img{
		width:80%;
		}
	
		img{
		width:80%;
		}
	.links{
	width:100%;
	}
}