
body{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    margin: auto;
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 400px;
    max-width: 90%;
    padding: 1em;
    min-height: 90vh;
    box-shadow: 0 0 10px 2px rgb(0, 0, 0, 0.2);
    border-radius: 2em;


}
a{
    font-style: unset!important;
    text-decoration: none;

}
h2{
    margin-block-end: 0.2em;
}


*{
    font-family: 'Courier New', Courier, monospace;
    color: #7f897e;
}


header{
    display: flex;
    justify-content: center;
    align-items: center;

}

p{
    margin-block-start: 0;
}

h1{
    padding-top: 0.1em;
    margin-block-start: unset;
}

.item-url{
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    margin-bottom:2em;
    justify-content: center;
    align-items: center;

}
.container-items{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.item-url>a{
    width: 150px;
    height: 60px;
    background-color: aliceblue;
    border-radius: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 2px rgb(0, 0, 0, 0.2);
    transition-duration: 0.2s;

}

.item-url>a:hover{
    transform: scale(1.05);
}

.ver_item{
    margin-left:1em;
}

a:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }


