-
Notifications
You must be signed in to change notification settings - Fork 0
/
erro.css
86 lines (77 loc) · 2.25 KB
/
erro.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* styles.css */
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
overflow: hidden; /* Evita barras de rolagem */
position: relative; /* Necessário para o efeito de ricochete */
}
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('saudeC.jpg') no-repeat center center fixed; /* Substitua pelo caminho da sua imagem de fundo */
background-size: cover;
filter: blur(8px); /* Aplica desfoque ao fundo */
z-index: -1; /* Coloca o fundo atrás do conteúdo */
}
.container {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
max-width: 800px;
margin: 20px;
background-color: rgba(255, 255, 255, 0.9); /* Cor de fundo clara com transparência */
padding: 20px;
border-radius: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: absolute; /* Necessário para movimentação */
animation: ricochet 10s infinite; /* Aplica a animação de ricochete */
}
/* Animação de ricochete */
@keyframes ricochet {
0% {
transform: translate(0, 0);
}
25% {
transform: translate(calc(100vw - 100%), calc(100vh - 100%));
}
50% {
transform: translate(calc(100vw - 100%), 0);
}
75% {
transform: translate(0, calc(100vh - 100%));
}
100% {
transform: translate(0, 0); /* Retorna ao ponto inicial */
}
}
.text-content {
flex: 1;
margin-right: 20px; /* Espaço entre o texto e a imagem */
}
.text-content h1 {
font-size: 3em;
margin: 0;
color: #00ff00; /* Verde para o título */
}
.text-content h2 {
font-size: 1.5em;
margin: 10px 0 0;
color: #666;
}
.image-content img {
max-width: 150px; /* Ajuste o tamanho conforme necessário */
height: 150px; /* Ajuste o tamanho conforme necessário */
border-radius: 50%; /* Faz com que a imagem tenha bordas arredondadas */
animation: spin 10s linear infinite; /* Animação de rotação */
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* Animação de rotação */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}