body{
    font-family: "Rubik", serif;
    background-color: #EDF6FF;
}

.pembuka{
    display: flex;
    padding: 20px 20px;
    gap: 12px;
    width: 800px;
    align-items: center;

    h1{
        font-weight: 700;
        font-size: 48px;
        color: #144AB3;
        line-height: 58.88px;
    }
}

.container{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 20px;
}

.isi{
    input{
        width: 400px;
        height: 40px;
        border: 1px solid black;
        border-radius: 12px;
    }
}

button{
    padding: 1;
    width: 80px;
    height: 40px;
    justify-self: end;
    align-self: flex-end;
    background-color: #2296E8;
    border: 1px solid #2296E8;
    border-radius: 8px;
}

.hasil{
    display: flex;
    justify-content: center;
    padding-top: 20px;

    .kiri{
        width: 500px;
        height: 400px;
        background-color: #144AB3;
        color: white;
        border-radius: 8px 0px 0px 8px;
        border-right: white 0.063rem solid;

        p{
            padding: 20px;
            color: white;
        }
    }

    .kanan{
        width: 500px;
        height: 400px;
        background-color: #144AB3;
        color: white;
        border-radius: 0px 8px 8px 0px;

        p{
            padding: 20px;
            color: white;
        }
    }
}