*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: "Montserrat";
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
}

.bg{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -100;
    opacity: .2;
    object-fit: cover;
}

.container{
    color: #fff;
    text-align: center;
}

h1{
    text-transform: uppercase;
    margin-bottom: 40px;
}

h3{
    font-weight: 400;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h5{
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sm a{
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0866ff;
    color: #ffffff;
    font-size: 30px;
    border-radius: 50%;
    padding: 4px 11px;
    transition: .3s linear;
}

.sm a:hover{
    transform: scale(1.1);
    opacity: 1;
}
