@font-face {
    font-family: "QuickSand";
    src: url("./Assets/Fonts/quicksand.book-regular.otf") format('opentype');
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


html {
  position: relative;
  min-height: 100%;
}

body {
    /*background image*/
    background-image: url("./Assets/Icons/background2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: hsl(242, 46%, 12%);
    /*formatting*/
    margin-bottom: 60px;
    padding: 20px;
    /*font*/
    font-family: "QuickSand", sans-serif;
    color: black;
}

* {
    box-sizing: border-box;
}

/* Center website */
.main {
    max-width: 40%;
    margin: auto;
}

/*text styles*/
h1 {
    font-size: 24px;
    word-break: normal;
}

h2{
    font-size: 18px;
    word-break: normal;
}

a{
    color: palevioletred; 
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/*image styles*/
.icon{
    max-width: 5%;
    height: auto;
}

.select {
    border-radius: 2%;
    cursor: pointer;
}

    .select:hover {
        filter: blur(5px) opacity(70%);
    }

/*formatting*/
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.row {
    margin: 1em -1em;
}

    /* Add padding BETWEEN each column (if you want) */
    .row,
    .row > .column {
        padding: .25em;
    }

/*.column {
    float: left;
    width: 33.33%; Create three equal columns that floats next to each other 
    display: none; Hide columns by default 
}*/

.row:after { /* Clear floats after rows */
    content: "";
    display: table;
    clear: both;
    
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 2em;
    
}

.filter{
    float: left;
    display: none; 
}


/* Style the buttons */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn {
    border: none;
    outline: none;
    padding: .75em 1em;
    border-radius: 10%;
    background-color: papayawhip;
    cursor: pointer;
    font-size: 16px;
}

    /* Add a grey background color on mouse-over */
    .btn:hover {
        background-color: palevioletred;
    }

    /* Add a dark background color to the active button */
    .btn.active {
        background-color: palevioletred;
        color: papayawhip;
    }
    
    
/*Dropdown menu*/
.dropdown {
  position: relative;
}

/* Style the dropdown button */
.dropbtn {
  background-color: lavender;
  border: none;
  cursor: pointer;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: lavender;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
}

/* Links inside dropdown content */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: palevioletred
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change background color of dropdown button on hover */
.dropdown:hover .dropbtn {
  background-color: palevioletred;
}