
body{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
::-webkit-scrollbar {
    display: none;
}
.container{
    display: grid;
    row-gap: 50px;
    column-gap: 50px;
    grid-template-rows: repeat(2,350px);
    grid-template-columns: repeat(3,350px);
    font-family: "Bebas Neue", sans-serif;
    font-weight: 300;
    font-style: normal;
    width: 70%;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 100px;
}
.container a img{
    height: 100%;
    margin-bottom: 10px;
}
.container a{
    text-decoration: none;
    color: grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
    letter-spacing: 1px;
    transition: all .5s;
}
.container a:hover{
    color: #ff7200;
    opacity: .9;
}