Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. * {
  2.   text-decoration: none;
  3.   box-sizing: border-box;
  4. }
  5.  
  6. body {
  7.   font-family: Arial, Helvetica, sans-serif;
  8. }
  9.  
  10. nav {
  11.   position: fixed;
  12.   top: 0;
  13.   width: 100%;
  14.   background-color: #fff;
  15.   display: block;
  16.   align-items: center;
  17. }
  18.  
  19. .nav .nav-container {
  20.   margin: auto;
  21.   max-width: 1000px;
  22.   display: flex;
  23.   align-items: center;
  24.   height: 70px;
  25.   justify-content: space-between;
  26. }
  27.  
  28. .nav .logo {
  29.   color: rgb(133, 0, 0);
  30.   font-weight: bold;
  31.   font-size: 20px;
  32. }
  33.  
  34. .nav .navbar {
  35.   color: #444;
  36.   font-weight: 400;
  37.   font-size: medium;
  38. }
  39.  
  40. .main {
  41.   margin-top: 100px;
  42. }
  43. .container {
  44.   left: 0;
  45.   max-width: 1000px;
  46.   margin: auto;
  47.   align-items: center;
  48.   padding: 0 2rem;
  49.   height: 530px;
  50. }
  51.  
  52. .content {
  53.   padding-bottom: 50px;
  54.   margin-top: 10px;
  55.   margin-bottom: 20px;
  56.   height: 400px;
  57. }
  58.  
  59. img {
  60.   max-height: 400px;
  61.   width: 350px;
  62. }
  63.  
  64. .left-side {
  65.   padding-right: 50px;
  66.   width: auto;
  67.   height: auto;
  68.   float: left;
  69. }
  70.  
  71. .right-side {
  72.   text-align: justify;
  73.   width: auto;
  74.   /* float: left; */
  75.   padding: 0px 10px;
  76.   margin: auto;
  77. }
  78.  
  79. .btn {
  80.   padding: 14px 100px;
  81.   margin-top: 100px;
  82.   font-size: large;
  83.   background-color: rgb(85, 46, 134);
  84.   color: #fff;
  85. }
  86.  
  87. .btn:hover {
  88.   background-color: rgb(128, 71, 199);
  89. }
  90.  
  91. .footer {
  92.   position: fixed;
  93.   left: 0;
  94.   bottom: 0;
  95.   width: 100%;
  96.   background-color: rgb(47, 51, 51);
  97.   color: white;
  98.   text-align: center;
  99. }