@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

html {
  box-sizing: border-box;
}

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

body {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  /* margin: 100px; */
}

.container {
  height: 250px;
  width: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(230, 230, 230);
}

#clouds,
#sun,
#balloon {
  opacity: 0;
}

.logo {
  top: 20px;
  left: 112px;
  width: 25%;
  position: absolute;
  overflow: hidden;
}

.logo2 {
  top: 35px;
  left: 67px;
  width: 55%;
  position: absolute;
  overflow: hidden;
}

/* Button code */

.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;
}
