/* main.css */
body {
  background-image: url('../assets/background.png');
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Montserrat', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

nav {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.button-container {
  text-align: center;
}

.btn {
  background: none;
  border: none;
  display: inline-block;
  width: 200px;
  height: 50px;
  background-size: cover;
}

.download-links {
  display: flex;
}

.custom-button {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
  margin-right: 10px;
}

.back {
  width: 130px;
  height: 132px;
}

.download-btn {
  background: rgb(96,9,240);
  background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%);
  border: none;
  
}

.download-btn:before {
  height: 0%;
  width: 2px;
}

.download-btn:hover {
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
              -4px -4px 6px 0 rgba(116, 125, 136, .5), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
}

.partner-icon {
}

.partner-info {
}

.ad {
border: 2px solid white;
  padding: 10px;
}
