body{
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

.btext{
    color: #f9f3f4;
    position: absolute;
    text-align: center;
    top: 25%;
    width: 100%;
    line-height: 0.4em;
}

h1{
    font-size: 100px;
}

.btn{
    color: #fff;
    text-decoration: none;
    border: #ccc 1px solid;
    padding: 10px 15px;
    border-radius: 8px;
    line-height: 4em;
}

.btn:hover{
    background: #ffffff;
    color: #000000;
    border: #fff 1px solid;
}

#particles-js{
    background-image: url('./img/okuhle.jpg');
    height: 100vh;
}
#snackbars{
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #FFF;
    text-align: center;
    border-radius: 2px;
    padding: 16px 16px 16px 0px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
}

#snackbars.show{
    visibility: visible;
    -webkit-animation: fadein 1.5s, fadeout 1.5s 2.5s;
    animation: fadein 1.5s, fadeout 1.5s 2.5s;
}
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@media(max-width: 768px)
{
 h1
{
    font-size: 50px;
}
#particles-js{
    background: url('./img/okuhle.jpg');
    background-size: cover;
    height: 100vh;
}
}