﻿@keyframes AnimacionFondo{

    100%{
        background-position: 15% 30%;
    }
}


.ContenedorPrincipal{

    position: unset;
    margin-top: 13%;
    background-color: rgb(128, 128, 128 0.15);
    padding : 25px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgb(128, 128, 128 0.6);
    backdrop-filter:blur(15px);
}

body {

    background-image:url('/Resources/fondo inicio.svg');
    background-repeat: no-repeat;
    animation: AnimacionFondo 6s infinite alternate linear;
}

.TextoBlanco{
    color: #FFF;
}