/* basic css styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#map {
    height: 100vh;
    width: 100vw;
}

.outerMap {
    height: 100vh;
    width: 100vw;
    position: absolute;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.582);   
}

.outertxtBox{
    max-height: auto;
    width: 30rem;
    position: relative;
    top: 50%;
    left: calc(50% - 15rem);
    border: 1px solid black;
    border-radius: 15%;
    background-color: rgba(14, 238, 100, 0.411);
}

.outertxt{
    margin: 50px 0 40px 0;
}

.outertxt p{
    font-size: 30px;
    text-align: center;
}

#trackBtn, #trackedBtn, #startTrack{
    position: relative;
    left: 10%;
    margin: 30px 30px 20px 0;
    height: 50px;
    width: 180px;
    font-size: 20px;
}

#tolink{
    font-size: 18px;
    cursor: pointer;
}

#stopTracked, #startTracked{
    margin: 30px 10px 0 10px;
    position: relative;
    left: 10%;
    height: 50px;
    width: 180px;
    font-size: 20px;
}

#startTrack{
    margin: 30px 30px 0 100px;
}

#inputTrack{
    padding: 10px;
    position: relative;
    left: 30%;
}

.inv{
    font-size: 10px;
    color: red;
}

.trackDataBox{
    position: absolute;
    top: 0;
    left: 30%;
    height: 3rem;
    width: 15rem;
    z-index: 9999;
    border: 1px solid black;
    border-radius: 10px;
    background-color: rgba(14, 238, 100, 0.411);
    display: none;
}

#stat{
    color: rgb(252, 0, 168);
}
#host{
    float: left;
    font-size: 18px;
    margin: 10px 0 0 30px;
}
#stopTrack{
    margin: 10px 0 0 30px;
    font-size: 18px;
    height: 30px;
    width: 70px;
}
#copybtn{
    margin: 0 0 0 20px;
    font-size: 15px;
    height: 28px;
    width: 50px;
}