@font-face {
    font-family: Rubik;
    src: url(https://fonts.google.com/specimen/Rubik);
}

body{
    font-family: Rubik;
}
.comment{
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex; 
    flex-direction: column;;
    justify-content: center;
    padding: 10px;
}

.reply{
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    margin-left: 10px;
    border-left: 1px solid black;
}

.modal{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 25% auto;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
  }

  @media (max-width: 1022px){
    .modal-content{
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        width: 100%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        position: relative;
    }
  }