body{
    background-color: #000;
}

#back{
    font-size: 30px;
    border: 3px solid white;
    border-radius: 20px;
    padding: 5px 5px;
    background-color: aliceblue;
    color: black;
}

a{
    color: white;
    text-decoration: none;
}

#proj_list{
    border: 2px solid white;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 40%;
    box-sizing: border-box;
    list-style: none;
    overflow: hidden;
    padding-top: 20px;
}


#proj_list a{
    width: 100%;
    text-align: center;
    font-size: 50px;
    display: block;
    margin-left: -20px;
    border-bottom: 2px solid grey;
}

#proj_list a:hover{
    background-color: rgba(69, 69, 69, 0.5);
}