
html{
    font-size: 62.5%;
}

body{
    display:flex;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
    background-color: black;
    color: white;
    justify-content: center;
    align-items: center;
}
.container{
  width: 256px;
  height: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.isi{
    text-align:center;
}


.btn{
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #b74b4b;
    transition: 0.3s ease;
    cursor: pointer;
    justify-content: center;
}

.btn:hover{
    transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 25px #b74b4b;
}

