@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,600;0,700;1,400&display=swap');

body {
  margin: 0;
  background-color: #fff;
  font-family: 'Source Sans Pro',sans-serif;
  overflow: hidden;
}
a {
  text-decoration: underline;
  color: #a1a1a1;
}

.logo{
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  top:20px;
  left:20px;
  line-height: 19px;
  margin:0
}
#upload-btn {
  display: none;
}
.wrapper {
  height: 100vh;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.uploadButton {
  background: #6fe29b;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;
  color: #000000c1;
  font-weight: 500;
}
.uploadButton:hover {
  background: #5ab87e;
  color: #000000c1;
}
.right {
  margin-left: 10%;
}
footer {
  z-index: 9;
  bottom: 0;
  color: #a1a1a1;
  position: relative;
}
object { 
  height: 630px;
  position: relative;
  transition: height cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
select{
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.about{
  padding: 20px 0 0 0; 
  width: 460px; 
  height: 100px;
  font-size: 15px;
  color: #a2a2a2;
  overflow: hidden;
  transition: height cubic-bezier(0, 0, 0.2, 1) 0.3s;
}
.responsive-device-selector{
    display: none;
    margin-bottom: 30px;
  }

/* ------------------------------------Install Snippet Started---------- */

#snackbar{
  position: absolute;
  right:0;
  width: 280px;
  height: auto;
  background-color: rgb(7, 7, 5);
  color: #fff;
  box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
  transform: translateX(120%);
  margin: 10px;
  padding: 20px;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.18, 0.89, 0.50, 1.05);
  z-index: 10;
}

.snackbar-button{
  color: #fff;
  padding: 8px;
  margin: 0px;
  border-radius: 20px;
  border: 1px solid #2e2e2e;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}
.snackbar-button:hover{
  background-color: #2e2e2e;
}

#closeBtn{
  padding: 8px;
  margin: 0 0 0 10px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

#closeBtn:hover{
  background-color: #2e2e2e;
}

/* ------------------------------------Install Snippet Ended---------- */

@media only screen and (max-width: 1024px){
  object {
    height: 70vh;
    }
}

@media only screen and (max-width: 960px){
  .right{
    display: none
  }
  .responsive-device-selector{
    display: block
  }
  .center{
    flex-direction: column
  }
  object {
  height: 58vh;
  }
  .hide-on-mobile{
    display: none;
  }
  .wrapper{
    transform: translateY(-32px);
  }
}

@media only screen and (max-width : 460px) and (max-height : 900px){
  object {
    height: 480px;
  }
}
