@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    font-family: 'Overpass', sans-serif;
    color: var(--White);
    
}

:root{
    --Orange: hsl(25, 97%, 53%);
    --White: hsl(0, 0%, 100%);
    --Light-Grey: hsl(216, 12%, 54%);
    --Medium-Grey: hsl(217, 10%, 25%);
    --Dark-Blue: hsl(213, 19%, 18%);
    --Very-Dark-Blue:hsl(216, 12%, 8%);
}

.background{
    display: flex;
    background: var(--Very-Dark-Blue);
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    
    
}
.background2{
    display: flex;
    background: var(--Dark-Blue);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    flex-direction: column;
    padding: 3rem;
    
}
h1{
    margin: 0 0 2rem 0;
    font-size: 32px;
}
.comparison{
    display: flex;
    width: 427px;
    height: 240px;
    background-color: var(--Medium-Grey);
    border: 2px solid var(--Very-Dark-Blue);
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    }
.imageimage{
    display: flex;
    
    width: 100px;
    height: auto;
}
.image-upload{
    display: none;
    width: inherit;
    height: inherit;
    border-radius: 10px;
    
}

.control{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 2rem 0 0 0;
    width: 426.667px;
    text-align: center;
    
}

.button{
    display: flex;
    background-color: var(--Orange);
    border-radius: 25px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    justify-content: center;
    padding: 15px 0 0 0;
    
}


.button:hover{
    background-color: var(--White);
    color: var(--Orange);
}
#compare{
    margin: 0 1.5rem 0 1.5rem;
    font-size: 20px;
    font-weight: bold;
    height: 50px;
    padding: 12px 0px 0px 0;
}