@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
  --primary: #ecf0f1;
  --background: #2c3e50;
  --background-translucent: #ffffffe1;
  --hover: #1a252f;
}

* {
  font-family: "Sora", sans-serif;
  color: aliceblue;
  box-sizing: border-box;
  text-align: center;
}

h1 {
  color: var(--primary);
  font-weight: 700;
  text-align: center;
}

h2 {
  font-weight: 500;
  font-size: larger;
}

body {
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

main {
  margin: 0;
  min-height: 87vh;
  width: 80%;
}

small {
  color: var(--primary);
  opacity: 0.7;
  margin: 20px;
  transition: all 0.2s ease-in-out;
}

small:hover {
  opacity: 0.9;
}

button {
  color: var(--background);
  outline: none;
  margin: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: medium;
  padding: 8px;
  margin: 20px 0 40px 0;
  font-weight: 500;
  background-color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-style: solid;
  border-color: aliceblue;
  border-width: 2px;
}

button.current {
  box-shadow: 0 0 0 2px white, 0 0 0 4px black;
}

button:hover {
  background-color: var(--hover);
  color: var(--primary);
}

img {
  border-radius: 10px;
  min-width: 300px;
  width: 35%;
  margin: 10px;
}

p {
  margin: 0;
  font-weight: 300;
  text-align: justify;
}

footer {
  width: 100%;
  text-align: center;
  padding-bottom: 10px;
  color: var(--primary);
  padding: 0 20px;
}

a {
  color: var(--primary);
  /* text-decoration: none; */
}

.ver {
  text-align: start !important;
  font-size: small;
}

/* custom scroll bar */
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--hover);
}

.made-with-love {
  padding-top: 20px;
}

.content {
  margin: 50px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.desc {
  width: 35%;
  min-width: 300px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-style: solid;
  border-radius: 10px;
  border-width: 2px;
  padding: 40px;
}

.policy {
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-style: solid;
  border-radius: 10px;
  border-width: 2px;
  padding: 20px 40px 40px 40px;
}
