Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
TheHellishPandaa authored Dec 31, 2024
1 parent 8747343 commit 5163b0f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
min-height: 100vh;
}

/* Contenedor principal */
.container {
text-align: center;
padding: 20px;
background: rgba(255, 255, 255, 0.1); /* Fondo semi-transparente */
background: rgba(255, 255, 255, 0.1);
border-radius: 15px;
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
margin: 0 15%;
width: 70%;
}

a {
Expand All @@ -40,15 +41,13 @@
transition: all 0.3s ease-in-out;
}


a:hover {
background-color: #ffcc00;
color: #1e3c72;
transform: scale(1.1);
box-shadow: 0px 5px 15px rgba(255, 204, 0, 0.5);
}

/* Estilo del título */
h1 {
font-size: 2.5em;
margin-bottom: 20px;
Expand All @@ -57,7 +56,6 @@
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Efecto animado al cargar */
@keyframes fadeIn {
from {
opacity: 0;
Expand All @@ -72,6 +70,7 @@
.container {
animation: fadeIn 1s ease-in-out;
}

</style>
</head>
<body>
Expand Down

0 comments on commit 5163b0f

Please sign in to comment.