:root{
    --magent: #C83376;
    --pink: #EDCDE1;
}

body{
    font-family: 'Helvetica', serif;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Ebgaramond', serif;
}

.bg-magent{
    background-color: var(--magent);
}
.bg-pink{
    background-color: var(--pink);
}
.bg-success{
    background-color: rgb(37, 156, 37);
}
.bg-danger{
    background-color: rgb(253, 0, 0);
}
.text-magent{
    color: var(--magent);
}
.text-pink{
    color: var(--pink);
}
.text-white{
    color: white;
}
.text-black{
    color: rgb(61, 59, 59);
}


.section-container{
    padding: 40px;
    text-align: center;
}

.icon-container{
    margin: auto;
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}
.icon-container img{
    object-fit: contain;
    object-position: center;
}

.main-button{
    margin:auto;
    width: fit-content;
    min-width: 200px;
    padding: 11px 20px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    transform-origin: center;
}
.main-button span{
    font-size: 14px;
    font-weight: 400;
}
.main-button:hover{
    transform: scale(1.02);
}

.hidden{
    display: none;
}

.copy_icon{
    padding-top: 10px;
}
.copy_icon svg{
    fill: white;
    width: 18px;
    height: 18px;
}
.copy_icon[data-state="true"] svg{
    fill: green;
}