@keyframes animationWarm{
    0% {background-color: lightsalmon}
    100% {background-color: lightcoral;}
}

body {
    background-image: url("img/uni.jpg");
    background-size: cover;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
}

section h1 {
    background-color: #333;
    font-size: 3.5rem;
    font-family: sans-serif;
    color: aliceblue;
    padding: 10px 30px;
    margin-top: 20%;
    border-radius: 1rem;
}

.button {
    display: flex;
    justify-content: center;
}

.button button {
    font-size: 1.5rem;
    font-family: sans-serif;
    padding: 30px 30px;
    margin: 10px 10px 10px 10px;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 4px 8px rgba(250, 1, 1, 0.7);
    animation: animationWarm 1s alternate-reverse infinite;
}
button:hover {
    cursor: pointer;
    
}

.fakeButton {
    font-size: 1.5rem;
    font-family: sans-serif;
    padding: 30px 30px;
    margin: 10px 10px 10px 10px;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 4px 8px rgba(250, 1, 1, 0.7);
    animation: animationWarm 1s alternate-reverse infinite;
    display: flex;
    padding: 10px 30px;
    background-color: #3498db;
    color: black;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}
