@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-image: url('https://dullite.com/image0.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*  background: #333; */
}

.container {
  position: relative;
  width: 100%;
  height: 100%; 
  display: flex;
  border-width: 5px;
  border-style: solid;
  border-color: #00A4BD;
}

.fish {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 1vw;
  height: 1vh;

}

.overlaytext {
	z-index: 100;
	position: absolute;
	color: white;
	top: 50px;
	left: 50px;
	font-size: 18px;

}


/* laptop computer */
@media (max-width: 2200px)
{
	.fish {
			width: 75%;
		    height: auto;
          }
}

/* ipad */
@media (max-width: 1100px)
{
	.fish {
			width: 50%;
		    height: auto;
          }
}

/* iphone */
@media (max-width: 800px)
{
	.fish {
			width: 25%;
		    height: auto;
          }
}


