/*General HTML Tags Styles*/

body {
    background-color: antiquewhite;
    margin: auto;
    font-size: 16px;
    text-align: center;
}

h1,
h4,
h3,
button {
    font-family: 'Berkshire Swash', cursive;
}

a {
    color: #630048;
}


/* Styles for the Title Section*/

.container {
    width: 80%;
    margin: auto;
    font-family: 'Catamaran', sans-serif;
}

.jumbotron {
    font-size: 30px;
    background-color: rgba(214, 203, 211, 0.7);
    width: 100%;
    margin: 20px auto;
    border: 3px solid #ccc;
    box-shadow: 0px 0px 2px #ed9fd8;
    z-index: 1;
}

/*Styles for the Alarm Section*/

.alarmSection,{
    background-color: rgba(236, 161, 166, 0.7);
    border: 2px solid #ddd;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0px 0px 2px #ed9fd8;
    margin-bottom: 20px;
}



button {
    display: inline-block;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #d6cbd3;
    box-shadow: 0px 0px 10px #337ab7;

}


/*The Results Section Styles*/

.countDown, .currentTime, .setAlarm {
    margin: 15px;
    font-size: 25px;
    font-weight: bold;
}

.countDown ul {
    max-height: 200px;
    overflow-y: scroll;
    font-size: 18px;
}


/*Styles for the overlay section*/

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    visibility: hidden;
    cursor: pointer;
    z-index: 1;
}

.open {
    visibility: visible;
}


/*position the content inside the overlay*/

.overlay-content {
    position: relative;
    top: 35%;
    left: 30%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

.overlay-content #text {
    padding: 20px;
    width: 60%;
    margin: auto;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    color: white;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.overlay-content #aboutHeader {
    font-size: 40px;
}


