:root {
    font-size: 16px;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    scroll-behavior: smooth;
    --bg-color: #d6d4cb;
}

body {
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@viewport {
    width: device-width;
    zoom: 1.0;
}

h1 {
    align-items: center;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
    padding: left = 50vw;
}
.description {
    position: relative;
    margin-bottom: 20px;
}

.workplace {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}


#prediction_result {
    font-size: 3rem;
}

#example{
    position: relative;
    margin: 0 auto;
    font-size: 1rem;
    width: max-content;
}

#example::after{
    z-index: 100;
    content: url(../img/sample.png);
    background-image: url(../img/sample.png);
    background-size: 602px 602px;
    display: block;
    position: absolute;
    top: 100%;
    width: 602px;
    height: 602px;
    content: "";
    transform: scale(0);
    transition: ease-in-out 300ms;
}

#example:hover::after{
    transform: scale(1);
}

#example:hover{
    cursor: pointer;
}
button{
    font-size: 1rem;
    background: #EE6352;
    padding: 0.2vw 0.5vw;
}

button:hover{
    cursor: pointer;
    background: #E93820;
    -webkit-transform: scale(0.97);
    -ms-transform: scale(0.97);
    transform: scale(0.97);
}
