@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

html {
    font-family: 'Poppins';
}

.container {
    align-items: center;
    width: 95%;
    height: auto;
    min-height: 100vh;
    background-color: #f0f0f0;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    border-radius: 2pc;
}

.judul{
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: yellow;
    min-height: 10vh;
    height: auto;
    width: 20%;
    border-radius: 1pc;
    background-color: white;
    box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.5);
}

.tombol {
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 2pc;
    box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.5);
    width: 70%;
    height: auto;
    min-height: 50vh;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
}

.judul h2 {
    font-size: 30px;
}

.pengirim {
    background-color: black;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 15px 30px;
    color: white;
    border-radius: 1pc;
    font-family: 'Poppins';
    transition: 0.4s;
}

.pengirim:hover {
    transform: scale(1.05);
}

.penerima {
    margin-top: 5px;
    border-radius: 1pc;
    padding: 15px 30px;
    background-color: black;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: white;
    font-family: 'Poppins';
    transition: 0.4s;
}

.penerima:hover {
    transform: scale(1.05);
}