@charset "UTF-8";
/* CSS Document */
 body {
                margin: 0px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100vw;
                height: 100vh;
                min-height: 675px;
                /*background-color: #F4F5FF;*/
                font: lighter 3em red Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
     animation-name: cambiarcolor;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-direction: reverse;
            }
            p {
                width: 100%;
                left: 0px;
                font-size: 16px;
                font-weight: 400;
                letter-spacing: 0px;
                text-align: center;
                vertical-align: top;
                max-width: 550px;
                color: #727586;
                margin: 0px;
            }
            a:hover {
                cursor: pointer;
                color: #673DE6;
                text-decoration: underline;
            }
            h1 {
                font-family: 'DM Sans', sans-serif;
                font-size: 24px;
                font-weight: 700;
                letter-spacing: 0px;
                text-align: center;
                margin: 8px;
            }
figcaption{
    text-align: center;
    color: firebrick;
    text-shadow: 1px 1px 4px black;
}
            .content {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
            }
            .ic-launch  {
                margin-left: 10.5px;
                width: 21px !important;
                height: 20px !important;
            }
            .link-container {
                margin-top: 32px;
                margin-bottom: 32px;
            }
            .link {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                font-family: 'DM Sans', sans-serif;
                font-style: normal;
                font-weight: 700;
                font-size: 14px;
                color: #673DE6;
                margin-top: 8px;
                text-decoration: none;
            }
            .main-image {
                width: 100%;
                max-width: 650px;
                max-height: 406px;
                height: auto;
            }
            .navigation {
                width: 100%;
                height: 72px;
                display: flex;
                margin: 0;
                padding: 0;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                background-color: #36344D;
            }


@keyframes cambiarcolor{
    0%{
        transform: scale(1);
        background-color: aqua;
    }
     10%{
        transform: scale(.9);
        background-color: #F90206;
    }
     20%{
        transform: scale(.8);
        background-color:#26F608;
    }
    30%{
        transform: scale(.7);
        background-color: #F9EC04;
    }
     40%{
        transform: scale(.6);
         background-color: #FF7800;
    }
     50%{
        transform: scale(.5);
         background-color: #A601FD;
    
}
}