@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: aliceblue;
  background-size: cover;
  background-position: center;
}

header {
  padding: 20px;
  text-align: center;
}

.logo img {
  max-width: 250px;
  height: auto;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
}

.button {
  background: linear-gradient(to bottom, #1d1d1d, #383839);
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.9;
}

footer {
  padding: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  width: 30px;
  height: 30px;
  transition: color 0.3s ease;
  color: rgb(17, 25, 54);
}

.icon:hover {
  opacity: 0.8;
}

.icon svg {
  width: 100%;
  height: 100%;
}


.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-buttons {
  margin-top: 15px;
}

.cookie-btn {
  background: #6200EA;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-settings {
  max-width: 600px;
  margin: 20px auto 0;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #6200EA;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.hidden {
  display: none;
}


@media (max-width: 768px) {
  .logo img {
    max-width: 200px;
    height: auto;
  }
  .buttons {
      width: 90%;
  }
}