@font-face {
    font-family: 'Strasua';
    src: url('Strasua.otf') format('opentype');
}

body, html {
    height: 100%;
    margin: 0;
    background: linear-gradient(135deg, #0d47a1, #1a237e);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: sans-serif;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 50% 0%;
    }
}
.container {
    text-align: center;
}

h1 {
    font-family: 'Strasua', sans-serif;
    font-size: 2rem;
    color: white;
    padding-left: 30px;
    padding-right: 30px;
}

h3 {
    font-size: 1.5rem;
    color: #9ea6ff;
    
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
}

.img-fluid {
    width: 200px;
    height: auto;
}