*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

#legal-main-container{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #08354e;
    align-items: center;
    flex-direction: column;
}
#legal-heading-container{
    height: fit-content;
    width: 100%;
    display: flex;
    border-bottom: 1px solid white;
    align-items: center;
    justify-content: center;
}
#legal-heading{
    display: flex;
    justify-content: end;
    flex-direction: column;
    height: fit-content;    
    font-size: 20px;
    padding: 30px 0;
    width: 50%;
}
#legal-heading h1{
    color:  #33cbd9;
}
#legal-heading span,#legal-heading h2{
    color: white;

}
#legal-second-main-container{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
#legal-upper-container{
    height: 300px;
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}
#legal-upper-container h2{
    color:  #33cbd9;
}
#legal-upper-container p{
    color: white;
    cursor: pointer;
}
#legal-upper-container span{
    color: white;
    cursor: pointer;
}
#legal-upper-container span:hover{
    color: white;
}
#legal-upper-container a{
    font-size: 30px;
    text-decoration: none;
    color: white;
}
#legal-upper-container a:hover{
    color:  #33cbd9;
}

#legal-bottom-container{
    height: auto;
    width: 70%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
}
#legal-bottom-container h1{
    color: white;
    font-size: 30px;
}
#legal-bottom-container p{
    text-align: left;
    margin: 3px 0;
    color: white;
}
#legal-bottom-container h2{
    color:  #33cbd9;
    font-size: 25px;
    text-align: left;
}
#legal-bottom-container span{
    font-weight: 500;
    color: white;
}
@media (max-width: 600px){
    #legal-upper-container{
        height: 300px;
        width: 80%;
    }
}