body{
    
    /* margin: 0; */
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    /* font-family: 'Agdasima', sans-serif; */

        font-family: "Open Sans", sans-serif;
        font-optical-sizing: auto;
        /* font-size: 1px; */
        font-style: normal;

     
    /* letter-spacing: 0.2em; */
    color: #1A253D;
   
    /* font-weight: 100; */
   
}

.content{
    position: fixed;
    margin: 0;
    /* padding: 100px; */
    display: block;
    /* justify-content: center; */
    text-align: center;
    /* background: linear-gradient(217deg, #66FB50, rgba(255,0,0,0) 70.71%),            
    linear-gradient(127deg, #66FB50, #D6FEF5 70.71%),            
    linear-gradient(336deg, #7CFC05, #DDFD65 70.71%); */
    height: 100%;
    width: 100%;
    font-size: 20px;
    /* background-image: url("BACKGROUND.jpg"); */
    background-repeat: no-repeat;
    background: linear-gradient(217deg, rgba(255, 255, 255, 0.8), rgba(255,0,0,0) 70.71%),
                linear-gradient(127deg, rgba(255, 168, 55, 0.8), rgba(0,255,0,0) 70.71%),
                linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
}

.innerSection{
    margin-top: 100px;
}
.logo{
    height: 130px;
}

button{
    /* width: 130px; */
    border-radius: 80px;
    border: none;
    padding: 6px 60px;
    margin: 10px;
    font-family: 'Dongle', sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: white;
    background-color: #1A253D;
    transition: transform .5s;
}

button:hover{
    cursor: pointer;
    transform: scale(1.1);
    background-color: rgb(31, 31, 31);
    
    /* background-color: #7CFC05; */

}

/* copied to clipboard success */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#copied-to-clipboard {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    margin-left: -68px;
    padding: 10px;
    color: white;
    background-color: var(--cta-primary);
    border-radius: 20px;
    font-size: 0.8rem;
    user-select: none;
    animation-name: fadeIn;
    animation-duration: 1s;
}