@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background: linear-gradient(orange, cyan);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    -webkit-background-size: cover;
    font-family: "Montserrat", sans-serif;
}

nav{
    align-items: center;
    text-align: center;
}

button{
    background-color: green;
    color: white;
    text-align: center;
    position: relative;
}

a,a:visited,a:active{
    display: block;
    color: black;   
}

.partner{
    text-align: center;
}

.text{
    text-align: center;
}

.center{
    text-align: center;
    color: black;
    text-decoration: underline;
}

.center:hover{
    animation-name: animate;
    animation-duration: 0.5s;
}

@keyframes animate{
    0%{
        font-size: 1em;
    }

    100% {
        font-size: 3rem;
    }
}

.text1{
    display: none;
}

.text2{
    display: none;
}