* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #DDD;
    /* background-image: linear-gradient(315deg, #182b3a 0%, #20a4f3 74%); */
    min-height: 100vh;
    height: 100vh;
    /* background: url('../img/training_indoors.jpg') no-repeat; */
    /* background-size: cover;
    background-position: center; */
}

.header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #2b4162;
    background-image: linear-gradient(0deg, #2b4162 0%, #12100e 74%);
    z-index: 100;
}

.logotitle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.logotitle h1 {
    color: #fff;
    padding: 5px;
}

.logo {
    font-size: 32px;
    /* color: #fff;
    text-decoration: none;
    font-weight: 700; */
    background: url('../img/hcl_logo_inverse.png') no-repeat;
    background-size: cover;
    background-position: center;
}

.middle {
    display: flex;
    width: 100%;
}

.info {
    margin: 20px;
    padding: 10px;
    display: block;
}
.info h2 {
    text-align: center;
}

.navbar {
    flex-direction: row;
}

.card {
    display: inline-block;
    border-radius: 10px;
    padding: 15px 25px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 10px 15px;
    background-position: center;
    transition: transform 0.5s;

    text-shadow: 0 0 15px #000;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;

    position: relative;
    background-image: linear-gradient(45deg,
                #2b4162 0%,
                #2b4162 20%,
                #b393d3 20%,
                #b393d3 40%,
                #2b4162 40%,
                #2b4162 60%,
                #b393d3 60%,
                #b393d3 80%,
                #2b4162 80%,
                #2b4162 100%);
    background-size: cover;
}

.card:hover {
    transform: translateY(-10px);
}

.card h4 {
    text-shadow: 0 0 15px #000;
    color: #FFF;
}

.card p {
    text-shadow: 0 0 15px #000;
    color: #FFF;
    font-size: 12px;
}

.infos {
    opacity: 1;
    position: fixed;
    transition: opacity 0.3s linear;

    display: flex;
    /* justify-content: center;
    align-items: center; */
    flex-direction: column;
    /* width: 60%; */
}

.infos.hide {
    opacity: 0;
} 

hr {
    margin-top: 10px;
}

.album_column {
    float: left;
    width: 50%;
    padding: 10px;
}

.album_column img {
    margin-top: 12px;
}

.album_row:after {
    content: "";
    display: table;
    clear: both;
}

table {
    width: 370px;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th,
td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #b393d3;
}