@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');



a{
    cursor: pointer;
    text-decoration: none; 
}


header a {
    color: bisque;
    padding-left: 20px;
    transition: all 0.3s ease;
}

header a:hover {
    text-shadow: 0 0 20px rgba(232, 244, 5, 0.7);
    scale: 1.1;
}

header div {
    margin: 0 auto;
    text-align: center;
}

html, body {
    margin: 0;
    padding: 10px;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #6693bb;
    height: 100%;
    margin: 0;
}

header {
    display: flex;    
    max-width: 1200px;
    text-align: center;
    line-height: 60px;
    margin: 20px auto;
    border-radius: 10px 10px 0 0;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(61, 98, 193, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);

    background: linear-gradient(300deg, #d9afcc 0%, #67779f 100%);    
    font-size: 25px;
    font-weight: bold;    
    color: bisque;

    justify-content: center;
    align-items: center;
    

}

.all-color-widget{
    background-color: white;
    max-width: 1180px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 
        0 0 20px rgba(61, 98, 193, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.5);

}

#color, #info-color{
    max-width: 1200px;    
    margin: 20px auto;
    border-radius: 10px;    
    
    
}

#color{
    height: 400px;
    display: flex;
    justify-content: right;    
    border: 2px solid rgba(0, 0, 0, 0.5);
    overflow: hidden;    
}

#info-color{
    text-align: center;
    font-size: 25px;
    font-weight: bold;   
    color: #1d8181;
}

#trans{
    transform: rotate(-90deg);
    width: 380px;
    margin-right: -170px;

}

.color-all {
    display: flex;
    justify-content: center;
    gap: 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

#rgba, #kivy, #hex8 {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: rgb(108, 206, 78);
    margin-bottom: 20px;
}

.name{
    font-size: 30px;
    font-weight: bold;
    color: #c19259;

}



#status {
    padding: 30px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 20px rgba(0, 0, 0, 0.8),
        0 10px 20px rgba(0, 0, 0, 0.2);

    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

#status.hide {
    animation: slideOutRight 0.3s ease-in forwards;
}


.widget {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;    
    gap: 3%;

    justify-content: center;
    align-items: center;
    
    
}

#button, #input, #div-widget {
    width: 30%;
    height: 60px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #000000;    
    border-radius: 10px;        
}

#input::placeholder {
    color: #000000;
}


#div-widget {
    line-height: 60px;
}