@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@900&display=swap');

body {
    -webkit-appearance: none; /*For Chrome*/
    -moz-appearance: none;/*For Mozilla*/
    appearance: none;
    background-color: rgb(237, 237, 229);
    display: grid;
    min-height: 70vh;
    align-content: center;
    justify-items: center;
}

.profile {
    display: flex;  
    flex-direction: column;
    align-items: center;
    height: 150px;
    width: 150px;
    background-image: url(assets/profile_pic_1.jpg);
    background-size: 100%;
    background-position: center;
    border-radius: 50%;
    margin: 10px;
    overflow: hidden;
}

.gif {
    visibility: hidden;
    max-width: 100%;
    max-height: 100%;
    margin-top: 10%;
    display: flex;  
    flex-direction: column;
    align-items: center;
}

.elements {
    align-items: center;
    position: relative;
    flex-direction: column;
}

.buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
}

button {
    margin: 1vh;
    width: 150px;
    height: inherit;
    border-radius: 20px;
    border-width: 3px;
    background-color: white;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    color: black;
    border-color: black;
}

button:nth-child(1) {
    margin-left: -150px;
}

button:nth-child(2) {
    margin-right: -150px;
}

.question {
    margin-left: 50px;
    margin-right: 50px;
    font-family: 'Work Sans', sans-serif;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 10%; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    border-radius: 25px;
    background-color: rgb(237, 237, 229);
    margin: auto;
    padding: 15px;
    border: 1px solid #888;
    width: 75%;
  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

.modal-container{
    padding: 10px;
    flex-direction: column;
    align-items: center !important;
}

.modalText {
    font-family: 'Work Sans', sans-serif;
}

.igHandle {
    font-family: 'Work Sans', sans-serif;
    color: black;
    text-decoration: underline;
    text-decoration-color: black;
    font-size: 3em;
}

.ig {
    transform: scale(.5, .5);
    display: grid;
    justify-items: center;
    margin-top: -50px;
    margin-bottom: -50px;
}