#root {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 20px;
}
#columne {
    display: flex;
    flex-direction: column;
    justify-content: center;
align-items: center;
}

#slika{
    width: 60%;
    padding: 50px;
    background: linear-gradient(rgb(192, 232, 255), gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px black;
    text-align: center;
}

#pic {
    width: 80%;
}
#btn {
    font-size: 2rem;
    border: none;
    background-color: rgb(128, 128, 128, 0.25);
    box-shadow: 12px 12px 50px 12px gray;
    border-radius: 20px;
    padding: 20px;
    
}
#pc{
    text-align: center;
}
#mobile {
    display: none;
    text-align: center;
}

#low {
    position: absolute;
    bottom: -100px;
    text-align: center;
    font-size: 1.25rem;
    font-family: monospace;
}


@media screen and (max-width: 600px) {
    #low{
        text-align: center;
        position: relative;
        font-size: 1.1rem;
    }

    #pc{
        display: none;
    }
    #mobile {
        display: block;
        text-align: center;
    }

    #root {
        padding: 0;
        margin: 0;
    }
    #slika {
      width: 100%;
      padding: 5px;
    }
    #pic {
        width: 100%;
    }

  }