* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

* {
  font-size: 1em;
  font-family: 'Quicksand', sans-serif;
}

/* STYLE OVERWRITE*/
@media(max-width: 768px) {
  /*MOBILE*/
}
@media(min-width: 768px) and (max-width: 1024px) {
  /*TABLET*/
}
@media(min-width: 1025px) {
  /*DESKTOP*/
}

body {
  font-family: 'Quicksand', sans-serif;
  background-image: url(/Pictures/DSC.jpg);
  backdrop-filter: sepia(5%) blur(3px) brightness(70%);
  color: #f0f0f0;
  line-height: 1.6;
  flex-direction: column;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
}

html body {
  margin: 0;
  padding: 0;
  height: 100%;
}

header {
  background-color: rgba(50, 100, 247, 0.7);
  padding: 20px;
  margin: 7px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: 150px; 
}

.logo {
  display: flex;
  align-items: center;

}

header .logo h1 {
  font-size: 24px;
  margin: 0; 
}

.title {
  display: flex;
  flex-direction: column;
}

.title h1 {
  font-size: 24px;
  margin: 0;
}

.title p {
  margin: 0;
  color: #ccc;
  font-size: 14px;
}

.logo-img {
  margin-right: 10px;
  width: auto;
}

header .logo p {
  font-size: 14px;
  color: #bbb;
  margin: 0;
}

nav ul {
  list-style: none;
  display: flex;
  background-color: rgba(118, 142, 235, 0.2);
  margin: 20px;
  padding: 5px;
  border-radius: 4px;

}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
}

main {
  display: flex;
  margin: 20px;
}

.content {
  flex: 3;
}

.section {
  margin-bottom: 20px;
}

.section h2 {
  font-size: 22px;
  color: #d2d2d2;
  margin-bottom: 10px;
}

.section p {
  margin-bottom: 10px;
  background-color: rgba(76, 45, 160, 0.2);
  backdrop-filter: blur(4px);
  padding: 4px;
  margin: 5px;
  border-radius: 3px;
  width:auto;
  backdrop-filter:trans;
  font-family: Quicksand, sans-serif;
}

button {
  padding: 10px 15px;
  background-color: #5a5a5a;
  border: none;
  color: white;
  cursor: pointer;

}

button:hover {
  background-color: #717171;
}

.sidebar {
  flex: 1;
  margin-left: 20px;
  background-color: #7c66d5;
  padding: 20px;
  border-radius: 10px;
}

.sidebar h2 {
  color: #e5e5e5;
  margin-bottom: 20px;
  background-color: rgb(202, 202, 231, 0.4);
  padding: 5px;
  border-radius: 4px;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #f1eef3;
  background-color: #5036b8;
  padding: 5px;
  border-radius: 3px;
}

.button2 {
  display: inline-block;
  color: white;
  width: min-content;
  background-color: blue;
  transition: width 0.6s, background-color 0.6s;
}

.button2:hover {
  width: 120px;
  background-color: #3519a6;
  transition: width 0.6s, background-color 0.6s;
}

footer {
  background-color: #7c66d5;
  color: white;
  text-align: center;
  padding: 10px;

  margin: 7px;
  border-radius: 4px;
  position: relative;
  bottom: 0;
}

main{
  flex: 1;
}

footer p {
  margin: 0;
  align-items: center;
  text-align: center;
  position: relative;
}

footer a{
  color: #fff;
  margin: 0 10;
  text-decoration: none;
}

footer a:hover {
  background-color: white;
  padding: 3px;
  border-radius: 3px;
  color: #5036b8;
  box-shadow: 0px 0px 5px #1f105b;
  transition: 0.3s, 0.3s;
}

footer .social-icons img {
  width: 40px;
  margin: 0 10px;
}

