body {
    font-family: "Montserrat", sans-serif;
    background-color: #4e4e4e;
    color: white;
    animation: enter forwards 0.8s ease-in-out;
}
.container {
    padding: 10px;
    margin: 10px auto;
    display: grid;
    grid-gap: 50px 50;
    width: 80%;
}
.subtitle {
    max-width: 69%;
    margin-left: 20px;
    align-self: center;
    justify-self: center;
}
.item {
    max-width: 100%;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.title {
    font-weight: 600;
    font-size: 24px;
    margin-right: 20px;
}
header {
    text-align: center;
    padding: 10px;
    border: solid 1px white;
    border-radius: 10px;
}

.image-container {
    display: block;
}

.image {
    border-radius: 5px;
    min-width: 20%
}

.paragraph {
    background-color: #444444;
    padding: 30px;
    margin: 15px auto;
    border: solid 1px white;
    border-radius: 10px;
    display: flex;
}

.paragraph:hover {
    animation: hoverA forwards 0.5s ease-in-out;
}

.footer:hover {
    animation: rainbow infinite 2s none;
    cursor: none;
}

b {
    color: #90abce;
}

@keyframes hoverA {
    from {
        border: solid 1px white;
    }
    to {
        border: solid 1px #c4c4c4;
        transform: translateY(-2px);
        box-shadow: 5px 7px 15px -2px rgba(0, 0, 0, 0.54);
    }
}
@keyframes enter {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rainbow {
    0% {
        color: #ff0000;
    }
    10% {
        color: #ff8000;
    }
    20% {
        color: #ffff00;
    }
    30% {
        color: #80ff00;
    }
    40% {
        color: #00ff00;
    }
    50% {
        color: #00ff80;
    }
    60% {
        color: #00ffff;
    }
    70% {
        color: #0080ff;
    }
    80% {
        color: #0000ff;
    }
    90% {
        color: #8000ff;
    }
    100% {
        color: #ff0080;
    }
}

.image-bis {
    min-width: 15%;
    border-radius: 10px;
    margin-left: 20px;
}
.link {
    color: #90abce;
}