/* google material design icons */
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0);

/* Styles */
body {
      font-family: monospace;
      background: #1e1e1f;
      max-width: 75%;
      margin: auto;
}

main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

header {
    width: 100%;
}

footer {
    width: 100%;
}

hr {
  color: #84868e;
}

button {
  border-color: #84868e;
  border-radius: 12px;
  background-color: transparent;
  transition: background-color 0.5s;
}

button:hover {
  background-color: rgb(95, 95, 95);
}

button p {
  font-weight: bold;
  padding-right: 7px;
  padding-left: 7px;
  font-family: monospace;
  color: #84868e;
  font-size: 100%;

}

.topbar {
    display: inline-flex;
    align-items: center;
}

.topbar h1 {
  font-size: 250%;
}

.topbarImage {
    width: 50px;
    height: 50px;
    padding-right: 20px
}
.profilePicContainer {
    width: 100%; 
    align-self: center; 
    display: flex; 
    justify-content: center;
}

.profilePic {
  border-radius: 50%; 
  width: 400px; 
  max-width: 80%;
}

.modal {
    position: absolute;
    min-width: 300px;
    max-width: 800px;
    height: fit-content;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 12px;
}

.modalHeader {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    
}

.modalTitle {
    margin: 0;
}

.materialDesignButton {
    width: fit-content;
    height: fit-content;
}



.animation_fadein {
  animation: fadein 2s;
  animation-iteration-count: 1;
}

@keyframes fadein {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }

}

.animation_fadeout {
  animation: fadeout 2s;
  animation-iteration-count: 1;
}

@keyframes fadeout {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }

}

h1 {
  font-family: monospace;
  color: #84868e;
  font-size: 300%;
  text-align:left;
}

h2 {
  font-family: monospace;
  color: #84868e;
  font-size: 250%;
  text-align:left;
}

article {
    text-align: center;
}

article h1 {
  font-family: monospace;
  color: #84868e;
  font-size: 200%;
  text-align:left;
}

p {
  font-family: monospace;
  color: #84868e;
  font-size: 150%;
}





