style2.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. *{margin:0;padding:0;font-family:'Saira',sans-serif;}
  2. html, body{
  3. width: 100vw;
  4. max-width: 100%;
  5. }
  6. .header{
  7. display: flex;
  8. justify-content: space-between;
  9. width: 100%;
  10. background: rgb(0, 27, 45);
  11. height: 75px;
  12. padding: 0 25px;
  13. box-sizing: border-box;
  14. }
  15. .headerStart{
  16. display: flex;
  17. align-items: center;
  18. text-decoration: none;
  19. }
  20. .headerLogo{
  21. color: white;
  22. font-size: 25px;
  23. margin-left: 10px;
  24. }
  25. .headerStart img{
  26. max-height: 90%;
  27. }
  28. .headerEnd{
  29. display: flex;
  30. align-items: center;
  31. height: 100%;
  32. color: white;
  33. }
  34. .link{
  35. margin: 10px;
  36. color: white;
  37. }
  38. .enterButton{
  39. background: rgb(179, 191, 209);
  40. border: none;
  41. text-decoration: none;
  42. padding: 10px 25px;
  43. color: black;
  44. cursor: pointer;
  45. text-align: center;
  46. font-size: 15px;
  47. min-width: 100px;
  48. margin: 5px;
  49. max-height: 52px;
  50. }
  51. .enterButton:hover{
  52. background: rgb(240, 252, 255);
  53. color:black;
  54. }
  55. .enterButton:active{
  56. background: rgb(0, 27, 45);
  57. }
  58. .main-background{
  59. display: flex;
  60. align-items: center;
  61. justify-content: center;
  62. background-image: url("/shared/images/backgroundImg01.jpg");
  63. background-repeat: no-repeat;
  64. background-size: cover;
  65. height: 88vh;
  66. width: 100%;
  67. color: rgb(0, 27, 45);
  68. }
  69. .logo-text{
  70. display: flex;
  71. flex-direction: column;
  72. align-items: center;
  73. max-width: 50vw;
  74. }
  75. .logo-text img{
  76. max-height: 25vh;
  77. margin-bottom: 35px;
  78. }
  79. .logo-text p{
  80. font-weight: bold;
  81. font-size: 25px;
  82. color: rgb(255, 99, 107);
  83. text-align: center;
  84. }
  85. .more-info{
  86. width: 100%;
  87. padding: 75px;
  88. background:rgb(0, 27, 45);
  89. color: white;
  90. box-sizing: border-box;
  91. text-align: justify;
  92. font-size: 25px;
  93. }
  94. .more-info > *{
  95. margin: 15px;
  96. }
  97. .line-break{
  98. width: 100%;
  99. border: 1px solid rgb(255, 99, 107);
  100. margin: 30px 0;
  101. }
  102. .more-info h1{
  103. color: rgb(255, 99, 107);
  104. text-align: center;
  105. font-size: 45px;
  106. margin: 25px 0;
  107. }
  108. ul > *{
  109. margin: 15px 0;
  110. }
  111. ul span{
  112. color: rgb(255, 99, 107);
  113. }
  114. li{
  115. font-size: 20px;
  116. }