html {
    background: linear-gradient(180deg, rgba(0,0,0,1) -10%, rgba(19,19,19,1) 50%, rgba(42,42,42,1) 110%);
    background-color: black;
 height: 100%;
}

body {
    height: 100%;
        /*background: rgb(0,0,0);*/
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(19,19,19,0.7) 50%, rgba(42,42,42,0.7) 100%),
        url('peggs-bar-overhead-drone-shot.jpg') no-repeat center center fixed;
        background-size: cover;
    font-family: "Oswald", impact, sans-serif;
    color: white;
}

h1 {
    font-weight: bold;
}
    
.content {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hidden {
    display: none !important;
}

h1 {
    margin-top: 0 !important;
}

@keyframes fall {
    0% {
        transform: scale(5) translateZ(0);
        opacity: 0;
    }
    70% {
        transform: scale(1);
        opacity: 1;
    }
    90% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px) translateY(-3px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px) translateY(3px);
    }
}

@keyframes dust {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(1.5);
    }
}

.fall-animation {
    animation: fall 0.9s ease-out, shake 0.6s ease-in-out 0.6s;
}

.dust {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(150,150,150,0.5) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    animation: dust 1s ease-out 0.7s forwards;
    pointer-events: none;
}

.dust1 {
    left: 80%;
    bottom: 50%;
    animation: dust 2s ease-out 0.7s forwards;
}

.dust2 {
    left: 15%;
    bottom: 45%;
    animation: dust 2s ease-out 0.7s forwards;
}

.dust3 {
    left: 30%;
    bottom: 10%;
    animation: dust 2s ease-out 0.7s forwards;
}

.dust4 {
    left: 45%;
    bottom: 15px;
    animation: dust 2s ease-out 0.7s forwards;
}

.dust5 {
    left: 55%;
    bottom: 5px;
    animation: dust 2s ease-out 0.7s forwards;
}

.relative-container {
    position: relative;
    display: inline-block;
}

#coming-soon span {
    opacity: 0;
    display: inline-block;
    animation: reveal 0.5s forwards;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bottom-foot {
    opacity: 0;
    animation: fadeIn 3s forwards 2s;
    bottom: 0;
}

.late-appear {
    opacity: 0;
    animation: fadeIn 3s forwards 4s;
}

.later-appear {
    opacity: 0;
    animation: fadeIn 2s forwards 5s;
}

.soc-icon {
    margin: 15px;
    text-decoration: none;
    
}

i {
    transition: transform .2s;
}

i:hover {
    transform: scale(2);
}

.no-underline {
    text-decoration: none !important;
    color: lightgray;
}

.mt-50 {
    margin-top: 50px;
}

.sit-bottom {
    bottom: 0;
}
.rotate img{
    transition: 1s ease;
}

.rotate img:hover{
-webkit-transform: rotateZ(-10deg);
-ms-transform: rotateZ(-10deg);
transform: rotateZ(-10deg);
transition: 1s ease;
}