@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
}

p, h1 {
    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;
}

h1 {
    font-size: 5rem;
}

a{
    display: flex;
    color: black;
    text-decoration: underline;
}

a:hover {
    color: white;
    text-decoration: underline;
}

.attributes a {
    font-size: 10px;
}