-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabimind.html
More file actions
1219 lines (993 loc) · 52.6 KB
/
abimind.html
File metadata and controls
1219 lines (993 loc) · 52.6 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- <html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mind</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
}
.cen{
padding-left: 11%;
padding-right: 11%;
}
.firsth {
position: relative; /* Changed to relative */
margin-top: -78px; /* Adjust according to header height */
padding-bottom: 2%;
}
.firsth video {
width: 100%;
height: calc(100vh - 67px); /* Full viewport height minus header height */
object-fit: cover; /* Ensures the video covers the container */
}
.yogamind a {
color: peachpuff;
text-decoration: none;
}
.entry-title {
-webkit-text-size-adjust: 100%;
visibility: visible !important;
box-sizing: border-box;
padding: 0;
color: #474646;
margin: 20px 0 6px 0; /* Add top margin to create space below the video */
font-size: 40px !important;
font-family: 'Overpass';
font-style: normal;
margin-top: 0;
word-wrap: break-word;
font-weight: 600 !important;
margin-bottom: 11px;
color: inherit;
line-height: 46px;
text-align: center; /* Optional: Center the heading */
}
.headings{
text-align: left;
color: #222121;
font-size: 35px;
}
.custom-paragraph {
font-family: 'Roboto', sans-serif;
font-size: 20px;
color: rgb(55, 52, 52);
padding-bottom: 3%;
padding-top: 1%;
}
.subpara{
font-family: 'Roboto slab', sans-serif;
font-size: 20px;
color: rgb(55, 52, 52);
padding-bottom: 3%;
padding-top: -1%;
}
.subhead{
font-family:'Roboto', sans-serif;
font-size: 20px;
color:hsla(31, 74%, 45%, 0.878);
}
/* SIDEBAR START */
.sidebar {
position: absolute;
top: 0;
left: 0;
width: 750px;
height: 100%;
background-color: #4c9b84;
z-index: 999;
overflow-y: auto;
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.sidebar.open {
transform: translateX(0);
}
.sidebar ul {
list-style: none;
padding: 0;
margin: 20px;
}
.sidebar ul li {
margin-bottom: 10px;
color: #fff;
font-size: 18px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.open-sidebar-text {
position: relative;
top: 20px;
left: 70px;
cursor: pointer;
color: #cbece8;
font-size: 68px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
z-index: 1000;
}
.close-button {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
color: #fff;
font-size: 18px;
}
.text-container1 {
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text1 {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text1::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container1:hover .fill-text1 {
color: #ffffff;
}
.text-container1:hover .fill-text1::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container2{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text2 {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text2::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container2:hover .fill-text1 {
color: #ffffff;
}
.text-container2:hover .fill-text2::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container3{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text3 {
position: relative;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text3::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container3:hover .fill-text3 {
color: #ffffff;
}
.text-container3:hover .fill-text3::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container4{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text4{
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text4::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container4:hover .fill-text4 {
color: #ffffff;
}
.text-container4:hover .fill-text4:before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container {
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container:hover .fill-text {
color: #ffffff;
}
.text-container:hover .fill-text::before {
width: 100%;
-webkit-text-fill-color: white;
}
.uncolored-link {
color: inherit;
text-decoration: none;
}
.text-container5{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text5{
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text5::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container5:hover .fill-text5 {
color: #ffffff;
}
.text-container5:hover .fill-text5:before {
width: 100%;
-webkit-text-fill-color: white;
}
/* SIDEBAR OVER */
</style>
</head>
<body>
<!-- SIDEBAR START
<div id="sidebar" class="sidebar">
<div class="close-button" id="closeSidebar">✕</div>
<ul>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="text-container5">
<li style="font-size: 68px;">   <a href="index.html" class="uncolored-link"><span class="fill-text5" data-text="home">home</span>
</a></li>
</div>
<div class="text-container">
<li style="font-size: 68px;">   <a href="newhome.html" class="uncolored-link"><span class="fill-text" data-text="yoga">yoga</span>
</a></li>
</div>
<div class="text-container1">
<li style="font-size: 68px;"><a href="yogaasanas.html" class="uncolored-link">   <span class="fill-text1" data-text="benefits">benefits</span>
</a></li>
</div>
<div class="text-container2">
<li style="font-size: 68px;"><a href="abimind.html" class="uncolored-link">   <span class="fill-text2" data-text="visit">visit</span>
</a></li>
</div>
</ul>
</div>
<div class="open-sidebar-text" id="openSidebarText">getfit:</div>
<script>
const openSidebarText = document.getElementById('openSidebarText');
const closeSidebar = document.getElementById('closeSidebar');
const sidebar = document.getElementById('sidebar');
openSidebarText.addEventListener('click', function() {
sidebar.classList.add('open');
});
closeSidebar.addEventListener('click', function() {
sidebar.classList.remove('open');
});
</script>
SIDEBAR OVER
<div class="firsth">
<video autoplay muted loop>
<source src="mindvid2.mp4" type="video/mp4">
</video>
</div>
<div class="cen">
<h1 class="entry-title">Healthy Body, Healthy Mind: 6 Ways to Boost Your Well-being</h1>
<p class="custom-paragraph " style="font-family: Merriweather;">When thinking about health, one of the first things that come to mind is the body. Without a healthy and strong body, it's hard to go about our day and achieve our purposes. In this fast-paced world, we prioritize physician appointments, daily workouts, and healthy diets to keep our bodies fit and functional. However, there is something just as crucial we tend to neglect: our mental health. As the adage goes, a healthy body is a healthy mind. Optimal mental and spiritual health, as demonstrated by science, plays an essential role in physical health. For this reason, finding the perfect balance between mind and body will open the doors to a healthier and more joyful life. Here’s how to start.
</p>
<p class="headings">The Power of the Human Mind</p>
<p class="custom-paragraph">During World War II, writer Jack Schwarz, like thousands of people, was unfairly deprived of his freedom. While being kept captive, he endured mistreatments, poor living conditions, and hunger. In this difficult time, Schwarz never lost hope and decided to find solace in his mind. Through constant prayer and meditation, he reached a peaceful mental state in which he was in full control over his body, being able to block out pain and endure his challenging situation. </p>
<p class="custom-paragraph">Experiences like this one prove that the human mind is more powerful than we believe. It also has a great influence over our bodies as the two of them are in constant communication, affecting each other in positive and negative ways. According to army veteran David Goggins, when you are physically exhausted and have 0 strength left, you have about 40% more capacity within you. It is your mind telling you that you are tired and done for, preventing you from achieving your best potential. </p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="mind3.mp4" type="video/mp4">
</video>
<p class="custom-paragraph"> Similarly, a positive mindset can be the key to achieving success. In his 2014 speech, Admiral William H. McRaven opened up about his experience as a Navy Seal trainee. He and a group of trainees endured over 8 hours submerged in chilly mud. When several men were about to give up, one of them broke into song. Suddenly, more and more trainees began singing, encouraging each other to go on. In McRaven’s words, “somehow the mud seemed a bit warmer and the wind a little tamer and the dawn not so far away.”
</p>
<p class="headings">Benefits Of A Balanced Mind-Body Connection</p>
<p class="custom-paragraph">Developing a healthy body and a healthy mind through a stronger connection between the two can do wonders for your well-being. As supported by the previously mentioned studies, this harmonious relationship will give you key tools to live a happier and more prosperous life through a vast array of benefits such as:</p>
<ul type="round" class="subhead">
<li> Better stress management </li>
<p class="custom-paragraph">Studies show that, when you improve your mind-body connection through practices such as yoga or meditation, you can activate the relaxation response. As a result, the nervous system rejects the “fight or flight” response associated with stress, embracing the “rest and digest” response, powering emotional well-being, and alleviating the physical symptoms of stress.</p>
<li> Powered immune system </li>
<p class="custom-paragraph">The immune system is one of the most important and fascinating aspects of the mind-body connection. As your immune cells participate in the chemical messages sent by the brain throughout the body, your thoughts, moods, and emotions are transmitted to those cells. Under stress, for example, the cells can trigger an inflammatory response — heat, redness, pain, and/or swelling. This also increases your propensity for numerous diseases, leaving you vulnerable to common infections. </p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="imm.mp4" type="video/mp4">
</video>
<p class="subpara">When you meditate, these chemical messages change in important ways. You become aware of the present moment and can let go of negativity. Furthermore, you cultivate feelings of positivity, love, and empathy, which, with time, will help you stay healthy.</p>
<li> More energy </li>
<p class="custom-paragraph"> Feeling tired at the end of a long workday is completely normal. However, nowadays, we experience collective exhaustion for a wide number of reasons. Stress is one of the main culprits. When the fight or flight response is activated, cortisol hormone levels begin flowing, and our bodies store as much energy as possible, leaving us exhausted once the danger or stressful situation passes. Studies by the University of Rutgers, show that mind-body techniques such as yoga and meditation can reduce stress by up to 50%. </p>
<p class="subpara">What's more, some studies have suggested that a strong mind-body connection through meditation increases the level of endorphins. These chemicals provide a powerful energy boost and the famous “runner's high” — a state that makes us feel exhilarated and euphoric after a rewarding run. </p>
<li>Control of addictions</li>
<p class="custom-paragraph">When the natural flow between your physical body and mind is broken, your level of self-awareness becomes restricted. Negative feelings and emotions surface and you experience self-doubt, helplessness, jealousy, etc. This opens the door to destructive addictions like smoking, drinking, and emotional eating. When you expand your awareness of the mind-body connection, your compassion and empathy proliferate. You become emotionally balanced and ready to take control of your life.
<li>Pain management</li>
<p class="custom-paragraph">Just like Jack Schwarz, a superior body connection can help you manage pain. In an NCCIH (National Center for Complementary and Integrative Health) study, Dr. Fadel Zeidan and his colleagues discovered that practices like mindfulness meditation — a mind-body intervention combining focused attention on the breath with a reduction in the awareness of external sensations and consequent thoughts — promote a pain relief effect without engaging the opioid receptors of the brain. </p>
<li>Better sleep</li>
<p class="custom-paragraph">We often struggle to get the much-needed sleep required to function at our best potential. Sometimes our thoughts won't give the body a rest. Fortunately, a powerful mind-body connection can help you train your brain to be ready for bedtime whenever you need it most. A great sense of mindfulness achieved through meditation brings awareness to the present moment, silencing negative thoughts and ensuring a natural energy restoration. </p>
</p>
</ul>
<p class="headings">6 Habits to Keep a Healthy Mind in a Healthy Body</p>
<p class="custom-paragraph">There are many ways to cultivate a healthy mind and a healthy body and enjoy the benefits that come with a positive relationship between the two. Here are 6 habits you can incorporate into your daily routine:</p>
<ol type="1" class="subhead">
<li>Meditate</l1>
<p class="custom-paragraph">Meditation has been around for as long as 3000 years. Fairly recently, scientists have been discovering its countless health benefits. As you meditate, you focus your attention inward to induce a state of deep relaxation. </p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="med1.mp4" type="video/mp4">
</video>
<p class="subpara">The best thing about meditation is that there are hundreds of different approaches to it. There is not a universally accepted meditation, which means you can try techniques that meet your needs. You can choose from mindfulness meditation, love and kindness meditation, and breathing meditation among many others. At Synctuition, for example, we specialize in sound meditation, incorporating the latest technology such as 3D sounds, Binaural Beats, Gamma Waves, ASMR sounds, and more. </p>
<li>Exercise regularly</li>
<p class="custom-paragraph">We all know that exercising and keeping physically fit is hard work, especially when we try to make time for it in our busy schedules. If you haven't been physically active for a long while or are not looking forward to it, you can start small. Short walks, office exercises, cycling, or swimming can be good ways to give your body the level of activity it needs. Remember to consult an expert if you have a pre-existing health condition or haven't been active in a while. </p>
<li>Foster creativity</li>
<p class="custom-paragraph">Intuitively, we know that creativity is good for us. Many times, our creative passions bring joy to our life. But, have you ever wondered if science has something to say about the benefits of creative behaviors? Being creative is a crucial part of our lives. In fact, creativity improves brain function, mental health, and physical health by making you happier, boosting your immune system, making you smarte</p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="cre.mp4" type="video/mp4">
</video>
<p class="subpara">According to a recent study by New Zealand psychologists, engaging in creative activities contributes to an “upward spiral” of positive emotions and feelings of flourishment and well-being. Coloring books for adults have become bestsellers due to their capacity to reduce stress levels. </p>
<p class="subpara">Activities such as expressive writing also seem to help with chronic pain management. People dealing with this condition had improved pain control plus pain decline after writing down their angry feelings for over 9 weeks, according to a study. If you are craving creativity, try activities such as music engagement, visual arts therapy, movement-based creative expression, and expressive writing.</p>
<li>Follow a healthy diet</li>
<p class="custom-paragraph">There is no doubt about it: food is the most important factor that can directly affect your health. Whenever you eat something that has gone bad, your stomach aches or you feel nauseous. When food acts as a poison, it causes inflammation, which alters the balance of hormones, nutrients, and neurotransmitters. Ultimately, this affects your body's ability to manage and heal from stress or illness. </p>
<p class="subpara">Think about sugar, for example. High sugar consumption results in blood sugar fluctuations, provoking anxiety, headaches, irritability, mood swings, and even increased depression. It is also linked to decreased intake of essential nutrients associated with obesity, diabetes, inflammatory disease, and joint pain. </p>
<li>Connect with others</li>
<p class="custom-paragraph">Throughout your life, your relationships have an impact on your well-being. How many times have you felt amazing after catching up with a friend you haven't seen for a long time? Overall, social connection generates positive feedback on social, emotional, and physical well-being. </p>
<p class="subpara">Scientific findings have even speculated that an act of intimacy such as hugging can have amazing benefits. Hugging boosts your oxytocin levels (the love hormone), increases serotonin (elevates mood and creates happiness), and strengthens the immune system and your self-esteem. Only a few seconds of love is enough to put you in a positive mood and boost your well-being. </p>
<li>Focus on the bright side</li>
<p class="custom-paragraph">From time to time, somebody tells you to “look at the bright side”. This phrase holds more power than you might think. There are plenty of reasons to start cultivating optimistic and affirmative thoughts and minimizing negative self-talk. For example, a positive mindset has been associated with many health benefits such as lower rates of depression, greater resistance to the common colds, better cardiovascular health, and enhanced coping skills during times of hardships. </p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="col.mp4" type="video/mp4">
</video>
<p class="subpara">It is unclear why people who engage in positive thinking get to experience health benefits. One hypothesis is that having an optimistic outlook allows you to manage stressful situations, which, in turn, reduces harmful physical and mental health effects.</p>
</ol>
<h1>Create the habit of a Healthy Body and a Healthy Mind today </h1>
<p class="custom-paragraph" style="font-family: poppins;">A Healthy Body is equivalent to a Healthy Mind. For a long time, humanity has seen the mind and the body as two separate entities. Nowadays, we know that a positive relationship between the two of them gives us a powered immune system, more energy, and better stress management. All you need to do to experience these perks and change your life for the better is exercise, foster creativity, embrace human connections, follow a healthy diet, focus on the positive, and meditate. At Synctuition, we have developed the latest meditation technology to help you relax and clear your mind from negativity. Our beautiful journeys contain 3D sounds, rhythmic entrainment frequencies, Gamma Waves, ASMR sounds, and binaural beats to help you develop a healthy body and a healthy mind. Start your life-changing journey today!</p>
<video autoplay muted loop style="width: 96%; height: auto;">
<source src="mind1.mp4" type="video/mp4">
</video>
</div>
</body>
</html> -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mind</title>
<style>
body, html {
margin: 0;
padding: 0;
height: 100%;
overflow-x: hidden;
}
.cen{
padding-left: 11%;
padding-right: 11%;
}
.firsth {
position: relative; /* Changed to relative */
margin-top: -78px; /* Adjust according to header height */
padding-bottom: 2%;
}
.firsth video {
width: 100%;
height: calc(100vh - 67px); /* Full viewport height minus header height */
object-fit: cover; /* Ensures the video covers the container */
}
.yogamind a {
color: peachpuff;
text-decoration: none;
}
.entry-title {
-webkit-text-size-adjust: 100%;
visibility: visible !important;
box-sizing: border-box;
padding: 0;
color: #474646;
margin: 20px 0 6px 0; /* Add top margin to create space below the video */
font-size: 40px !important;
font-family: 'Overpass';
font-style: normal;
margin-top: 0;
word-wrap: break-word;
font-weight: 600 !important;
margin-bottom: 11px;
color: inherit;
line-height: 46px;
text-align: center; /* Optional: Center the heading */
}
.headings{
text-align: left;
color: #222121;
font-size: 35px;
}
.custom-paragraph {
font-family: 'Roboto', sans-serif;
font-size: 20px;
color: rgb(55, 52, 52);
padding-bottom: 3%;
padding-top: 1%;
}
.subpara{
font-family: 'Roboto slab', sans-serif;
font-size: 20px;
color: rgb(55, 52, 52);
padding-bottom: 3%;
padding-top: -1%;
}
.subhead{
font-family:'Roboto', sans-serif;
font-size: 20px;
color:hsla(31, 74%, 45%, 0.878);
}
/* SIDEBAR START */
.sidebar {
position: absolute;
top: 0;
left: 0;
width: 750px;
height: 100%;
background-color: #4c9b84;
z-index: 999;
overflow-y: auto;
transform: translateX(-100%);
transition: transform 0.3s ease;
}
.sidebar.open {
transform: translateX(0);
}
.sidebar ul {
list-style: none;
padding: 0;
margin: 20px;
}
.sidebar ul li {
margin-bottom: 10px;
color: #fff;
font-size: 18px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.open-sidebar-text {
position: relative;
top: 20px;
left: 70px;
cursor: pointer;
color: #cbece8;
font-size: 68px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
z-index: 1000;
}
.text-container1 {
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text1 {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text1::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container1:hover .fill-text1 {
color: #ffffff;
}
.text-container1:hover .fill-text1::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container2{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text2 {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text2::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container2:hover .fill-text1 {
color: #ffffff;
}
.text-container2:hover .fill-text2::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container3{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text3 {
position: relative;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text3::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container3:hover .fill-text3 {
color: #ffffff;
}
.text-container3:hover .fill-text3::before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container4{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text4{
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text4::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container4:hover .fill-text4 {
color: #ffffff;
}
.text-container4:hover .fill-text4:before {
width: 100%;
-webkit-text-fill-color: white;
}
.text-container {
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}
.fill-text {
position: absolute;
color: transparent;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
white-space: nowrap;
transition: all 2s linear;
}
.fill-text::before {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffffff;
transition: all 2s linear;
width: 0;
white-space: nowrap;
}
.text-container:hover .fill-text {
color: #ffffff;
}
.text-container:hover .fill-text::before {
width: 100%;
-webkit-text-fill-color: white;
}
.uncolored-link {
color: inherit;
text-decoration: none;
}
.text-container5{
position: relative;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', sans-serif;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1.6px;
-webkit-text-stroke-color: rgb(255, 255, 255);
font-weight: 900;
text-transform: lowercase;
font-size: 158px;
white-space: nowrap;
}