body {
    padding-top: 84px;
    background-color: #1d1d1d;
}

ol {
    color: #d5dae2;
    font-size: 15px;
    padding-top: 20px;
}

ol li {
    margin-bottom: 5px;
}

h1 {
    color: #F45950;
    padding: 10px;
}

h2 {
    font-size: 24px;
    color: #F45950;
    padding: 10px;
}

.caption {
    height: 70px;
    overflow: hidden;
}

.section-title {
    min-height: 170px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(244, 89, 80, 0.2);
    padding-bottom: 12px;
}

.thumbnail {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

body > .container {
    position: relative;
    min-height: calc(100vh - 84px);
    padding-bottom: 70px;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    margin: 0;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 }
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
  from { bottom:-100px; opacity:0 }
  to { bottom:0; opacity:1 }
}

#myDiv {
    width: 100%;
    height: 200px;
    background-color: #1D1D1D;
}

#button1 {
    margin: 0 30%;
    height: 100px;
    width: 40%;
    margin-top: 4%;
    background-color: #f45950 !important;
    border: none !important;
    border-radius: 12px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 4px 20px rgba(244, 89, 80, 0.4) !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease !important;
    cursor: pointer !important;
}

#button1:hover {
    background-color: #e62c21 !important;
    box-shadow: 0 6px 28px rgba(244, 89, 80, 0.6) !important;
    transform: translateY(-2px) !important;
}

#button1:active {
    transform: translateY(0) !important;
}

#button1.clicked {
    background-color: #3498db !important;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.4) !important;
}

#button1.clicked:hover {
    background-color: #2980b9 !important;
    box-shadow: 0 6px 28px rgba(52, 152, 219, 0.6) !important;
}

#button1 p {
    font-size: 30px;
    font-style: bold;
    padding-top: 10px;
}

@media only screen and (max-width: 480px) {
    #button1 {
        margin: 0 15%;
        width: 70%;
    }
}

@media only screen and (max-width: 320px) {
    #button1 {
        margin: 0 15%;
        width: 70%;
    }
}
