*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    src: url(../font/Quicksand-VariableFont_wght.ttf);
    font-family: 'quicksand', sans-serif;
    color: #2E3192;
    font-weight: bold;
}

body{
    background-color: #fff;
}

.navbar{
    background-color: #fff;
    position: fixed;
    height: 70px;
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 15px rgba(50, 50, 93, .2); 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
}
  
.nav-links a:hover {
    cursor: pointer;
}

.account-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.profile-pic img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #c7eafb;
}

.personal-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.info-card{
    background-color: #eeeeee;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    margin: 10px;
    padding-top: 10px;
    padding-left: 10px;
}

.quizzes{
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quiz-card{
    background-color: #C7EAFB;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    margin: 10px;
    padding-top: 10px;
    padding-left: 10px;
}

.add-quiz{
    text-align: center;
    background-color: #C7EAFB;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    border-style: dashed;
    border-color: #2E3192;
    border-width: 3px;
    margin: 10px;
    font-weight: bold;
    font-size: 20px;
    padding-top: 5px;
}

.add-quiz:hover{
    background-color: #a5ddf9;
    cursor: pointer;
    user-select: none;
}

.quiz-item{
    background-color: #C7EAFB;
    width: 250px;
    height: 40px;
    border-radius: 10px;
    margin: 10px;
    padding-top: 10px;
    padding-left: 10px;
}

.quiz-item:hover{
    background-color: #a5ddf9;
    cursor: pointer;
    user-select: none;
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
  }
  
  .delete-icon {
    width: 20px;
    height: 20px;
  }
  