*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Montserrat";
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    overflow-y:hidden;
    position:relative;
}

.bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
    opacity: 0.4;
}

.bg video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 

  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;

  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.container{
    text-align: center;
    
}

h3{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    color:#dbb28f;
    inline-size: 550px;
    overflow-wrap: break-word;
}

.sm a{
    display: inline-block;
    width: 53px;
    height: 60px;
    line-height: 50px;
    color: #fff;
    font-size: 22px;
    margin: 5px;
    opacity: .7;
    transition: .30s linear;

}

.sm a:hover{
    transform: scale(1.1);
    opacity: 1;
}
.gold-color {
        color:#dbb28f;
    }
