body {
    margin: 0px;
    padding: 0px;
    font-family: 'Roboto', sans-serif;
    background: url("../images/bg.png") no-repeat center;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
p {
    color: #ffffff;
    text-align: center;
    font-size: 25px;
}
h1 {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-style: italic;
    font-size: 25px;
    margin: 0;
    position: relative;
    margin-bottom: 50px;
}
h1:before {
    position: absolute;
    top: -10px;
    left: 25px;
    right: 0;
    margin: auto;
    width: 160px;
    height: 2px;
    background: #fff;
    border-radius: 50px;
}
.mt {
    margin-top: 55px;
}
.mt a{
    transition: all .2s;
    display: inline-block;
}
.mt a:hover{
    transform: scale(1.05);
}
.link {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    transition: all .2s;
    display: inline-block;
}
.link:hover {
    color: #a5cd50;
    transform: scale(1.05);
}


.pulsing:before {
    -webkit-animation: pulsing 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both infinite;
            animation: pulsing 4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both infinite;
}
@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes pulsing {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}




.noteBarContainer {
    width: 500px;
    max-width: 90vw;
    height: 20px;
    background: white;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 8px 2px rgba(0,0,0,0.3);
    margin: auto;
}

.noteBar {
    display: block;
    float: left;
    height: 100%;
    color: #fff;
    text-align: right;
    padding-right: 10px;
    padding-top: 2px;
    box-sizing: border-box;
    font-size: 13px;
}



.noteBar {
    background: linear-gradient(-45deg, #3f9db5, #683fb5, #a83fb5, #b53f77);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

table td {
    border: 1px solid #ccc;
    padding: 0 10px;
}

table td p {
    font-size: 18px;
    margin: 10px;
}
table{
    background: #009688;
    border-radius: 5px;
}


@media screen and (max-width: 480px){
    p {
        font-size: 19px;
    }
    h1 {
        font-size: 45px;
        margin-bottom: -20px;
    }
    h1:before {
        width: 130px;
    }
    .link {
        font-size: 13px;
    }
    .mt img{
        width: 175px;
    }
    table td{
        padding: 0;
    }
    table td p {
        font-size: 15px;
    }
}





.boxTime {
    position: absolute;
    top: 30px;
    right: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    width: 290px;
    font-size: 15px;
}

.display-date {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.display-time {
  font-weight: bold;
  border-radius: 5px;
  transition: ease-in-out 0.1s;
  transition-property: background, box-shadow, color;
  -webkit-box-reflect: below 2px
    linear-gradient(transparent, rgba(255, 255, 255, 0.05));
  text-align: center;
  letter-spacing: 1px;
}

