@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.info {
        display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #333;
    font-size: 1.5rem;
    text-align: center;
    padding: 0 20px;
    margin-left: 100px;
    margin-top: 10vh;
    margin-right: 100px;
    margin-bottom: 10vh;
    animation: fadeIn 1s;
}

.info h1{
    margin: 20px;
    margin-bottom: 50px;
}

.info p{
    margin: 40px;
}

.info a{
    color: black;
    text-decoration: underline;
}

.info a:hover {
    color: white;
    text-decoration: underline;
}