html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }
        #start-button {
        margin-left: auto;
        margin-right: auto;
    }
}
*{
    
    color: #ffff;
    font-family: monospace;
    /* font-size: large; */
    font-weight: bold;
    text-decoration: none;
}
body{
  text-align:unset;
}

nav.nav{
    display: ruby;
    /* background-color: rgb(19, 21, 34); */
}


ul{
    /* margin-left:0px */
    margin-right: 1000px;
}
li{
    display: inline;
    margin-right: 20px;
    
    font-family: monospace;
}
li a {
    display:inline-flex;
    margin: 0;    
    font-size: x-large;
    text-decoration: none;
    color: rgb(226, 205, 83);
    cursor: pointer;
}

button{
    background-color: rgb(226, 205, 83);
    color: rgb(36, 34, 34);
    font-size: large;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    width: 160px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    display: inline;
}
#title{
    font-size: 30px;
    font-weight: bolder;
    color: rgb(226, 205, 83);
    margin-right:70px ;
}

.user-menu-wrapper {
  position: relative;
  display: inline-block;
}


.user-circle {
  margin-top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(228, 216, 151); 
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
  justify-content: center; /* Center horizontally */
  align-items: center;
}
.user-circle h4{
    margin-right: 14px;
    /* margin-bottom: 17px; */
    margin-top: 11px;
    font-size: large;
    color: rgb(63, 60, 60);
    background: none;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 46px;
  right: 0;
  background-color: rgb(236, 230, 193);
  border: 1px solid rgb(236, 234, 215);
  border-radius: 8px;
  padding: 0;
  margin: 0;
  margin-left: 30px;
  margin-top: 15px;
  list-style: none;
  width: 250px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  text-align: right;
}

.dropdown-menu li {
  border-bottom: 1px solid rgb(236, 234, 215);
}
.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  font-size: 19px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block;
  padding: 10px 15px;
  color: rgb(36, 34, 34);
  text-decoration: none;
  background-color: rgb(236, 230, 193);
}

.dropdown-menu li a:hover {
  background-color: rgb(231, 228, 201);
  border: none;
}

.dropdown-menu.show {
  display: block;
}


i{
    background-color: inherit;
    margin-left: 15px;
    color: darkgray;
    font-style:normal;
}

span{
    background-color: inherit;
    color: #3333;
}

#username{
  background-color: rgb(236, 230, 193);
  margin-top: 10px;
  color:rgb(36, 34, 34);
  text-align: center;
}