/* basic page setup and text stuff */

body, html {
  margin: 0;

}

body {
    margin-top: 0%;
  min-width: 1200px;
}

button {
    background-color: #000;
    text-align: center;
    color: white;
    border: none;
    border-radius:5%;
    width: 120px;
    position: absolute;
    box-shadow: inset 0px 0px 0px rgba(0,0,0);
    transition: 0.1s all;
    -webkit-transition: 0.1s all;
    cursor: pointer; /* Add a pointer on hover */
}

button:hover, button:focus {
  opacity: 0.8;
}

button:active {
  box-shadow: inset 0px 0px 10px rgba(0,0,0);
}

.play {
  position:relative;
  top:30px;
  font-size:1.4em;
}

.stop {
  position:relative;
  top:40px;
  font-size:1.4em;
}


.controls{
  position:relative;
  margin: auto;
  width:8.5%;
}




/* Wheather App :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.weather-app {
    margin:auto;
    width: 300px;
    height: 160px;
    border: 0.1px solid black;
    border-radius: 50px;
    box-shadow: 10px 10px 50px #888888;
    overflow: hidden;
    text-align:center;
    font-family: "Mono";
}

.espacio {
    opacity: 0;
    text-align: center;
    align-content: center;
    width: 10px;
    height: 10px;
    margin: 0px;
    overflow: hidden;
}

.left {
    float: left;
    background: #262626;
    padding:10px;
    width:150px;
    height:100%;
    color:white;
}

.temperature {
    margin-top:30px;
    margin-bottom:5px;
    font-size:32px;
    font-weight: bold;
    width: 150px;
}

.location {
    font-size: 18px;
    width:100%;
    width:150px;
}

.description {
    font-size: 18px;
    font-family:cursive;
    width:100%;
    width:150px;
    color: #FFDF00;
}

.id {
    font-size: 5px;
    width:100%;
    width:150px;
    color: #262626;
}

.right {
    float: right;
    width:130px;
    height:100%;
    background: #800080;
}

.top {
    height: 100px;
    width: 100%;
    margin: auto;
    background: #f2f2f2;
}

.top img {
    margin-top: 15px;
}

.bottom {
    height: 70px;
    background: #800080;
    color: white;
}

.amuleto {
    font-size: 15px;
    width:100%;
    width:75%;
    margin-left: 10%;
    margin-top: 10%;
}

.textoo {
    font-size: 20px;
    width:100%;
    width:75%;
    margin-left: 12.5%;
    margin-top: 5%;
    text-align:center;
    font-family: cursive;
    
}

#loading {
/*   border: 1px solid white; */
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index : 101;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0; 
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255,255,255); /* Black background with opacity */
  z-index: 100; /* Specify a stack order in case you're using a different order for other elements */

}

.size2{
    float : left;
    width: 70px;
    text-align: center;

}
.colan{
    float : left;
    width: 40px;
    text-align: center;
}

#timerContent{
    padding: 50px;
    display: table;
    margin: 0 auto;
    
}
