body{
    margin: 0px;
    background-color: #1a181e;
}

a{
    text-decoration: none;
}

.access{
    margin: 5vw;
    background-color: #1a1923;
    width: 400px;
    height: 500px;
    display: inline-block;
    margin-top: 10vh;
    position: relative;
    box-shadow: 0px 0px 10px black;
    cursor: pointer;
    transition: transform 0.3s;
}

.access:hover{
    transform: scale(1.1)
}

.access img{
    width: 60%;
    height: 90%;
    padding: 20%;
}

.access .image{
    position: relative;
    display: inline-block;
}

#allAccess{
    text-align: center;
}

.access .text{
    width: calc(100% - 20px);
    background-color: #2a292e;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "IBM Plex Mono", Andale Mono, AndaleMono, monospace;
    bottom: 0px;
    left: 0px;
    position: absolute;
    display: inline-block;
    padding: 10px;
}