*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#legal-main-container{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#legal-heading-container{
    height: 400px;
    width: 100%;
    display: flex;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
    background-color: #af1d5c;
}
#legal-heading {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
}

#legal-heading span {
    color: white;
    font-size: 70px;
}
#legal-heading h1 {
    color: transparent;
    font-size: 70px;
    -webkit-text-stroke: 2px white;  
}

#legal-second-main-container{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color:whitesmoke;
}
#legal-upper-container{
    height: 300px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}
#legal-upper-container h2{
    color: #c02567;
}
#legal-upper-container p{
    color: black;
    cursor: pointer;
}
#legal-upper-container span{
    color: gray;
    cursor: pointer;
}
#legal-upper-container span:hover{
    color: black;
}
#legal-bottom-container{
    height: auto;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}
#legal-bottom-container h1{
    color: gray;
}
#legal-bottom-container p{
    text-align: left;
    color: black;
}
#legal-bottom-container h2{
    color: #c02567;
    text-align: left;
}
#legal-bottom-container span{
    font-weight: 500;
    color: #5c2c34;
}

@media (max-width: 768px){
    #legal-heading span {
        font-size: 60px;
    }
    #legal-heading h1 {
        font-size: 60px;
    }
    
}
@media (max-width: 600px) {
    #legal-upper-container {
        height: 300px;
        width: 80%;
    }
    #legal-heading-container{
        height: 300px;
    }
    #legal-heading span {
        font-size: 50px;
    }
    #legal-heading h1 {
        font-size: 50px;
    }
#legal-bottom-container{
    width: 90%;
}
}
@media (max-width: 452px){
    #legal-heading span {
        font-size: 40px;
    }
    #legal-heading h1 {
        font-size: 40px;
    }
    
}
@media (max-width: 399px){
    #legal-heading-container{
        height: 200px;
    }
    #legal-heading span {
        font-size: 30px;
    }
    #legal-heading h1 {
        font-size: 30px;
    }
    
}