* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #202020;
    margin: auto;
}

.hero {
    width: 100%;
    height: auto;
    min-height: 100vh;
    margin: auto;
    background-color: hsl(0, 4%, 11%);
    padding-bottom: 50px;
}
.container {
    width: 100%;
    margin: auto;
    margin-top: 20px;
}
.btn-con {
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
}
h1 {
    font-family: 'Lucida Grande';
    font-size: 55px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}
h2 {
    font-family: 'Lucida Sans';
    font-size: 25px;
    font-weight: 400;
    color: #ffffff;
}
.glass-button {
    width: 100%;
    max-width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 12px 24px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .glass-button:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #000;
    text-decoration: none;
  }
  