@import url('https://fonts.googleapis.com/css2?family=PT+Serif');

html {
    font-family: "PT Serif", sans-serif;
    text-align: center;
    color: #000;
}

body {
    margin: 0;
    background: linear-gradient(-45deg, #5267ee, #613ce7, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

h1{
    text-transform: uppercase;
    font-family: 'PT Serif';
    font-size: 4rem;
    color: #326695;
}

p{
    font-size: 2rem;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    background: rgba(216, 216, 216, 0.753);
    border-radius: 32px;
    backdrop-filter: blur(1px);
    min-height: 90vh;
    margin: 5vh 2vw;
}

.wrapper {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 765px){
    img{
        height: 400px;
    }
}