@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');
*,
*::before,
*::after 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body 
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to top, #fad0c4 0%, #ffd1ff 100%);
}
.imc-container 
{
    position: relative;
    max-width: 500px;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 30px;
}
.icon 
{
    cursor: pointer;
    position: absolute;
    font-size: 25px;
    top: 10px;
    right: 20px;
    transition: all 200ms ease-in-out;

}
.icon:hover
{
    transform: scale(1.15);
}
.moon:hover
{
    color: rgb(41, 63, 130);
}
.sun:hover
{
    color: #ec8989;
}
.imc-body 
{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
h1 
{
    font-weight: 500;
}
h2 
{
    font-weight: 400;
}
table.GeneratedTable 
{
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
    color: #000000;
}
  
table.GeneratedTable td, table.GeneratedTable th 
{
    border-width: 1px;
    border-color: #000000;
    border-style: solid;
    padding: 3px;
}
  
table.GeneratedTable thead 
{
    background-color: #e66e6e;
}  
form 
{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input
{
    width: 60px;
    height: 30px;
    background-color: #ec8989;
    border-radius: 5px;
    color: white;
    border: none;
    padding-left: 10px;
}
input:focus 
{
    outline: none;
}
span 
{
    font-size: 12px;
    font-weight: 300;
    padding-left: 5px;
}

button
{
    cursor: pointer;
    border: none;
    padding: 18px;
    width: max-content;
    border-radius: 10px;
    transition: all 300ms ease-in-out;
}
.darkHover:hover,
.darkHover:active 
{
    background-color: #7488a1;
    color: #FFFFFF;
}
.lightHover:hover, 
.lightHover:active 
{
    background-color: #e66e6e;
    color: #FFFFFF;
}
.displayOff 
{
    display: none;
}
td 
{
    padding-left: 10px;
}
#iconSun 
{
    display: none;
}

@media screen and (max-width: 500px) {
    .imc-container
    {
        border-radius: 0;
        min-height: 80%;
        display: flex;
        align-items: center;
    }
}




