a {
    text-decoration: none;
}

#hook {
    color: white;
    text-shadow:
        0 0 5px #fff,
        0 0 20px #0ff;
    animation: fadeInTop 1s ease-in both;
}

.section {
    display: flex;
    height: fit-content;
    margin-top: 5%;
}

.publication, .project{
    display: flex;
    flex-direction: column-reverse;
    width: 360px;
    height: 200px;
    margin-left: 5%;
    border-radius: 15px;
    background-size: cover;
    overflow: hidden;
    box-shadow: black 0 0 10px;

    transition: all 0.3s ease-out;
    &:hover{
        transform: scale(1.1);
        box-shadow: black 0 0 20px;
    }
}

.publicationTitle, .projectName{
    color: white;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.6);

    width: 100%; 
    height:20%;

    overflow: hidden;
}

.actionButton{
    color: white;
    display: flex;
    align-items: center;
    margin: 10px 0px 10px 7px;
    background-color: #0000;
    border: none;
    transition: all 0.3s ease-out;
    cursor: pointer;

    &:hover{
        transform: scale(1.1);
        color: rgb(65, 168, 202);
    }
}

#homeToolbar{
    display: flex;
    padding-right: 7px;
    justify-content: center;
    background-color: #1d1d1d;
    border: solid black;
}

#logout {
    &:hover{
        transform: scale(1.1);
        color: rgb(163, 28, 28);
    }
}