*{
    box-sizing: border-box;
}
body{
    font-family:georgia serif;
}
h1{
    color:black;
    font-size:27px;
   margin-bottom: 30px;
   text-align: center;
}

.section{
    background-color: gray;
    border:2px solid black;
    margin-top:20px;
    position:relative;
    margin-right:20px;
    text-align: justify;
    padding:3px;

}
 p{
  
    padding:15px 5px 0px 5px;
    position:relative;
    font-size:16px;
    
}
span{
    position:absolute;
    float:right;
    top:0;
    margin:0;
    right:0;
    width:150px;
    border-left:2px solid black;
    border-bottom:2px solid black;
    text-align: center;
    font-size:20px;
    font-weight: bold;
   

}
#p1{
    background-color:hotpink;
    color:black;
}
#p2{
    background-color:rgb(216, 0, 108);
    color:white;
}
#p3{
    background-color:rgb(231, 97, 243);
    color:black;
}
.row{
    width:100%;
}

@media (min-width:992px){
    .col-lg-4{
        float:left;
        width:33.33%;
   
       }
}
@media (min-width:768px) and (max-width:991px){
    .col-md-6{
        float:left;
        width:50%;
   
       }
    .col-md-12{
        float:left;
        width:100%;
   
       }
}


@media (max-width:767px){
    .col-sx-12{
        float:left;
        width:100%;
   
       }
}
