* {

    box-sizing: border-box;
}


body {


    display: block;
    background-color: salmon;
    background-size: cover;

}

/* #div9 {

    background-image: url(nofoto.jpg);
    background-size: cover;
} */


#maindiv {
    display: block;
    max-width: 800px;
    height: auto;
    margin-bottom: 4rem;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    
}

#rowstart {

    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    height: 4rem;
    color: white;
    font-size: 14pt;
    border-radius: 10px;
    margin: 1rem 0;

}

#row {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    
    


}

.button_field {


    flex-basis: 120px;
    flex-grow: 0;
    flex-shrink: 0;
    

    height: 180px;
    border: 4px solid white;
    margin: 1rem;
    background-color: white;
    border-radius: 10px;
}


#rowlast {

    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    height: 4rem;
    border-radius: 10px;
    margin: 1rem 0;
    padding: 0.4rem;

}

#rowlast img {
    
    width: 40px;
    height: 40px;
}





.button_class_ari {

  background-color: gray;
  opacity: 0.5;
  border: none;
  color: white;
  padding: 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 12px;
  margin: 4px 2px;
  border-radius: 50%;
  z-index: 1;
}

	
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 2;
    
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
    text-align: center;
    z-index: 3;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}
.close-button:hover {
    background-color: darkgray;
}

.avoidclick {
    pointer-events:none;
}

h1 {
    color: black;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;}

h2 {
    color: white;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}