*,html,body{
 margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: steelblue;
    text-align: center;
    height: 100vh;
}
h2{
    color: white;
    font-size: 2rem; 
    padding: 2rem;
    padding-top: 1rem

}
.float{
    position: fixed;
    top: 50%; 
    transform:rotate(90deg);
    right:0%;
    width: 155px;
    background-color:rgba(239,229,229,0.4);
    color:#6b090e;
    font-size:1.3rem;
    font-style: italic;
    font-family: monospace;
}
.float a{
    text-decoration: none;
    color:wheat;
}
.container{
    padding: 10px 20px;
    background-color: rgba(33, 43, 55, 0.3);
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}
.segment{
    margin: 10px 0;
    background-color: rgba(114, 125, 139, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.group{
    border: 1px dotted #7474e4;
}
.group p{
    color: #ff6c6c;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
}
p.recovered{
    color: #14f778;
}
@media(max-width:650px){
    .container{
        flex-direction: column;
        width: 90%;
    }
    .dark{
        background-color: rgba(33, 43, 55, 0.6);
    }
    .group{
        width: 80%;
        margin: auto
    }
.float{
top:90%;
left:0;
text-align:left;
transform:none;
padding-left:5px;

}
    
}
