@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oxygen&display=swap');

/* palette : https://www.palettable.io/4BD9FF-455E63-5F8287-737587-9E3E3E */

html{
    font-family: 'Oxygen', sans-serif;
    font-style: 16px;
    font-weight: 400;
}

h1{
    font-family: 'Noto Serif', serif;
    font-weight: 700; /* available: font-weight: 400 and 700 */
    font-style: 5rem;  
}
h2{
    margin: 0;
    padding: 20px 0;
}

body{
    background-color: #eee;
}

header, footer{
    padding: 50px 0;
    margin: 0 auto;
    text-align: center;
    background-color: #4BD9FF;
    color: #455E63;
}
footer{
    padding: 30px 0;
}

main{
    color:#737587;
    background-color: #ddd;
    max-width: 1060px;
    margin: 0 auto;
    min-height: 500px;
    padding: 10px;
}
.text-red{
    color: #9E3E3E;
}
.text-green{
    color: #5F8287;
}
.text-darkblue{
    color: #455E63;
}
.text-blue{
    color: #4BD9FF;
}
.text-dark{
    color: #737587;
}

/* Prodjecte Specifik */

#ardoise{
    background-color: white;
    border: 1px solid black;
}

#tools{
    margin: 15px 0;
}

#tools button{
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    background-image: linear-gradient(to bottom, #737587, #455E63);
    color: #eee;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.7),
                inset -1px -1px 2px rgba(0, 0, 0, 0.7);
    text-shadow:    1px 1px 2px rgba(255, 255, 255, 0.7),
                    -1px -1px 2px rgba(0, 0, 0, 0.7);
}
#tools button:hover{
    box-shadow: none;
    border: 2px solid #4BD9FF;
}

#tools button.select{
    background-image: linear-gradient(to top, #737587, #455E63);
    border: 2px dashed rgba(0, 0, 0, 0.7);
    box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.7),
                inset -1px -1px 1px rgba(0, 0, 0, 0.7);
}

.colorSample{
    cursor: url("eye-dropper-solid.svg") 2 16, auto;
    display: inline-block;
    padding: 20px;
    border-radius: 50px;
    border: 2px solid #455E63;
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.7),
                inset -1px -1px 2px rgba(0, 0, 0, 0.7);
}

#colors {
    display: none;
}

#colors.show {
    display: block;
}

a, a:hover, a:visited{
    color: inherit;
    text-decoration: inherit;
}