.wrapper{
    margin-top: 30px;
}

body{
    overflow-y: auto;
    overflow-x: hidden;
}

.title{
    display: block;
    user-select: none;
    font-family: Comfortaa;
    color: white;
    text-align: center;
    font-size: 50px;
    text-shadow: 2.5px 2.5px rgba(255,255,255,0.3);
}

.small_title{
    display: block;
    user-select: none;
    font-family: Comfortaa;
    color: white;
    text-align: center;
    font-size: 30px;
}

.items_holder{
    display: flex;
    margin-left:auto;
    margin-right: auto;
    justify-content: center;
}

.item{
    margin: 10px;
    overflow-y: auto;
    display: inline-block;
    user-select: none;
    text-align: left;
    font-family: Comfortaa;
    width: 300px;   
    height: 500px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0px;
    box-shadow: 6px 6px rgba(200,200,200,0.05);
    transition: 200ms;
}

.item:hover{
    width: 400px;
    height: 600px;
    box-shadow: 10px 10px rgba(200,200,200,0.05);
    
    
    transition: 300ms;
}

.item:hover .desc{
    font-size: 20px;
}
.item:hover ul{
    font-size: 20px;
}

.item a{
    color: white;
    text-shadow: 1.5px 1.5px rgba(255,255,255,0.3);
    font-weight: bold;
}

.item a:hover{
    color: white;
    text-decoration:underline;
    transition: 200ms;
}

.desc{
    margin-left: -15px;
    padding-right: 20px;
}

.desc_footer{
    font-size: 10px;
    position: absolute;
    color: rgba(255,255,255,0.2);
}

.context{
    user-select: none;
    text-align: left;
    font-family: Comfortaa;
    color: white;
}

.context li{
    margin: 0 0 5px 0;
    padding-right: 10px;
}

.inside_list{
    margin: 0 0 10px 0;
    list-style-type:disc;
}

.text{
    color: white;
}

.link{
    color: white;
    text-decoration: underline;
}

.link:hover{
    color: rgba(255,255,255,0.5);
}

::-webkit-scrollbar {
  width: 0px;
}

