body{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: lightblue;
}

a {
    text-decoration: none;
    color: black;
}

.container a {
    text-decoration: none;
    color: black;
}

.outer{
    background: #83ccd3; 
    border-radius: 30px; 
    text-align: center; 
    height: 50px; 
    width: 200px; 
    display: inline-block; 
    transition: .2s; 
    position: relative; 
}

#div_upload{
    padding: 17px 30px 12px; 
    color: #000; 
    text-align: center; 
    position: relative; 
    display: inline-block; 
    overflow: hidden; 
    z-index: 3; 
    white-space: nowrap;
}

#div_upload input {
    position: absolute; 
    width: 100%; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 105%; 
    cursor: pointer; 
    opacity: 0;
}

.container{
    width: 50%;
    height: fit-content;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: white;
    padding: 5%;
}

#bildeKontainer img{
    margin: 5% 0;
    border: 2px solid #62B95A;
    width: 300px;
}

.result{
    color: black;
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 1%;
}

.knapp_hvitevarer {
    margin-top: 20px;
    background: #83ccd3;
    border-radius: 30px; 
    text-align: center; 
    height: 50px; 
    width: 150px; 
    display: inline-block; 
    transition: .2s; 
    position: relative; 
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.form{
    margin-top: 20px;
}

/*-------------------- bare for gate1.html -------------------*/
.btn_bug{
    background: #D22B2B;
    margin-top: 30px; 
}

.feedback{
    background-color: bisque;
    margin-top: 5%;
    font-size: larger;
    position: relative;
    width: 300px;
    height: 300px;
    text-align: center;
    border-radius: 15px;
}


@media only screen and (max-width: 600px) {
    .container{
        width: 70%;
  }
}

@media only screen and (max-width: 425px) {
    .container{
        width: 90%;
  }
}

