globals.css 1.29 KB
.body-xyz{
    background: #eff0f500;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card{
    max-width: 300px;
    width: 100%;
    padding: 24px;
    border: 0;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
}

.content-section h1{
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
}

.content-section p{
    text-align: center;
    font-size: 22px;
    line-height: 1.5;
}

.icon-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.icon-group span{
    width: 30px;
    height: 30px;
    border: 1px solid black;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: 600;
}

.icon-group span:nth-child(1){
    background: lightblue;
}

.icon-group span:nth-child(2){
    background: rgb(70, 172, 206);
}

.icon-group span:nth-child(3){
    background: rgb(149, 103, 175);
}

.icon-group span:nth-child(4){
    background: rgb(240, 7, 38);
}

.btn-group button{
    padding: 10px 28px;
    border: 0;
    outline: 0;
    border-radius: 10px;
}

button:nth-child(2){
    margin-left: 5px;
}

.another-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.another-group h3{
    font-size: 14px;
}