*{
  margin: 0;
  padding: 0; 
  box-sizing: border-box;
  font-family: arial;
}

body {
  margin-left: 20px;
  margin-right: 20px;
}


.profile-grid {
  display: grid;
  grid-template-columns: 200px 200px 200px;
  column-gap: 20px;

  margin-bottom: 20px;
}
.profile {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  
}
.profile-img {
  width: 200px;
  height: 200px;

  object-fit: cover;
  margin-bottom: 7px;
}
.profile-name {
  font-weight: bold;
  margin-left: 10px;
}
.profile-rows {
  display: grid;

  grid-template-columns: 35px 1fr;
  row-gap: 10px;

  align-items: center;
  margin-left: 10px;
  margin-top: 5px;
}
.profile-mutual-img {
  width: 25px;
  height: 25px;

  object-fit: cover;
  border-radius: 50%;
}
.profile-mutual {
  color: rgb(87, 87, 87);
}
.profile-addfriend-button {
  color: white;
  background-color: rgb(0, 174, 255);

  border: none;
  border-radius: 3px;

  cursor: pointer;

  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}


.grid-1 {
  display: grid;
  grid-template-columns: 75px 200px;
}
.lightblue {
  background-color: lightblue;
}
.lightpink {
  background-color: lightpink;
}

.grid-2 {
  margin-top: 10px;

  display: grid;
  grid-template-columns: 50px 1fr 75px;
}

.grid-3 {
  margin-top: 10px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
}


.flex-1 {
  display: flex;
  flex-direction: row;

  margin-top: 20px;
}
.item-1 {
  width: 200px;
}
.item-2 {
  width: 75px;
}

.flex-2 {
  display: flex;
  flex-direction: row;

  margin-top: 10px;
}
.item-3 {
  width: 50px;
}
.item-4 {
  flex: 1;
}
.item-5 {
  width: 75px;
}

.flex-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  margin-top: 10px;
}

.flex-4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  height: 50px;
  border: solid;
  border-color: gray;

  margin-top: 10px;
}


.notification {
  border: solid;
  border-width: 1px;
  border-color: gray;
  border-radius: 8px;

  margin-top: 20px;
  margin-bottom: 20px;
}
.container-notif {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.notif-circle {
  background-color: rgb(0, 102, 255);
  color: white;

  font-weight: bold;

  border-radius: 20px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}


.follow-flex {
  margin-bottom: 20px;
}
.container-follow {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 400px;
  margin-bottom: 20px;
}
.follow-pic {
  border-radius: 50%;
  height: 60px;
  width: 60px;

  object-fit: cover;
}
.follow-p {
  margin-bottom: 5px;
  margin-left: 15px;
}
.name-p {
  font-size: 13px;
  font-weight: bold;
}
.tag-p {
  font-size: 13px;
  color: gray;
}
.pop-p {
  font-size: 13px;
  color: gray;
}
.follow-button {
  color: white;
  background-color: rgb(0, 110, 255);
  font-weight: bold;

  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-left: auto;

  border: none;
  border-radius: 3px;

  cursor: pointer;
}


.search-bar {
  background-color: rgb(132, 0, 255);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 8px;
  margin-bottom: 20px;
}
.search-home {
  font-weight: bold;
  color: white;
}
.search-input {
  border: none;
  border-radius: 25px;

  width: 750px;
  padding-left: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.search-input:focus {
  outline: none;
}
.search-button {
  background-color: transparent;
  color: white;

  border: solid;
  border-radius: 2px;
  border-width: 1px;

  padding-top: 9px;
  padding-bottom: 8px;
  padding-right: 15px;
  padding-left: 15px;

  cursor: pointer;
}


.nested-flex {
  display: flex;
  flex-direction: row;
  height: 50px;

  margin-bottom: 20px;
}
.nested1 {
  width: 100px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.nestedin-item1 {
  background-color: black;
  color: white;
}
.nested2 {
  width: 200px;
}


.nested-flex2 {
  display: flex;
  flex-direction: row;
  height: 50px;

  margin-bottom: 20px;
}
.nested-item-1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.nestedin-item2 {
  background-color: black;
  color: white;
}


.gmail-ios {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  width: 500px;

  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.gmail-flex {
  display: flex;
  flex-direction: row;

  margin-bottom: 20px;
}
.content-left {
  margin-right: 8px;
}
.content-right {
  flex: 1;
}
.gmail-ios-profile {
  border-radius: 50%;
  height: 50px;
  width: 50px;

  object-fit: cover;
}
.gmail-ios-title{
  color: gray;
  font-size: 12px;

  margin-bottom: 15px;
}
.gmail-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gmail-title-1 {
  font-weight: bold;
  font-size: 17px;
}
.gmail-title-2 {
  color: gray;
  font-size: 14px;
}
.gmail-subject {
  font-weight: bold;
  font-size: 15px;

  margin: 5px 0;
}
.gmail-text {
  color: gray;
  font-size: 15px;
}


.twitter {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  width: 430px;

  padding-top: 15px;
  padding-left: 15px;
  margin-bottom: 20px;
}
.twitter-profile {
  height: 50px;
  width: 50px;
  border-radius: 50%;

  object-fit: cover;
  margin-right: 10px;
}
.tweet-header {
  display: flex;
  direction: row;
}
.tweet-author {
  font-weight: bold;
  font-size: 15px;
}
.tweet-author-id {
  margin-left: 5px;
  color: rgb(88, 88, 88);
  font-size: 15px;
}
.tweet-content {
  margin: 10px 0;
}
.twitter-video {
  display: flex;
  direction: row;

  width: 340px;

  border: solid;
  border-radius: 11px;
  border-width: 1px;
  border-color: rgb(209, 209, 209);

  overflow: hidden;
  margin-bottom: 10px;
}
.twitter-video-thumbnail {
  background-color: rgb(209, 209, 209);
  width: 160px;
}
.twitter-video-content {
  padding: 10px 10px;
}
.tvc-address {
  color: rgb(88, 88, 88);;
}


.position-fixed {
  background-color: black;
  color: white;

  position: fixed;
  right: 20px;
  bottom: 20px;
}
.position-fixed2 {
  background-color: green;
  color: white;

  position: fixed;
  right: 20px;
  top: 20px;
}


.sidebar {
  background-color: green;
  color: white;

  width: 100px;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
}
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}
.modal {
  background-color: white;
  width: 300px;
  border-radius: 8px;

  padding: 10px;
}
.modal-title {
  font-weight: bold;
  font-size: 24px;
}
.modal-subject {
  margin: 10px 0;
}


.facebook-header {
  display: flex;
  direction: row;
  justify-content: space-between;

  position: fixed;
  right: 20px;
  left: 20px;
  top: 0;
  z-index: 1;

  padding: 7px 80px;

  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5)
}
.fbh-l {
  display: flex;
  direction: row;
  align-items: center;
}
.fbh-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.fbh-name {
  font-weight: bold;
  font-size: 15px;
  margin-left: 5px;
}
.fbh-r {
  display: flex;
  align-items: center;
}
.fbh-addfriend {
  background-color: rgb(0, 119, 255);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;

  padding: 8px 12px;
  margin-right: 10px;
}
.fbh-message {
  background-color: rgb(228, 228, 228);
  border: none;
  border-radius: 6px;
  font-weight: bold;

  padding: 8px 12px;
}


.discord-sidebar {
  display: flex;
  direction: row;

  position: fixed;
  top: 55px;
  left: 20px;
  bottom: 0;
}
.discord-l {
  width: 50px;
  background-color: rgb(34, 34, 34);

  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}
.discord-profile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;

  margin-bottom: 10px;
}
.discord-r {
  width: 150px;
  background-color: rgb(66, 66, 66);

  padding: 20px 20px;
}
.disord-info-bar {
  display: flex;
  direction: row;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 10px;
}
.discord-info {
  color: white;
  font-weight: bold;
  font-size: 15px;
}
.discord-plus {
  color: rgb(151, 151, 151);
  font-size: 30px;
}
.discord-channels {
  color: rgb(151, 151, 151);
  margin-bottom: 20px;
}

.box-position {
  background-color: gray;
  width: 320px;
  height: 180px;

  position: fixed;
  right: 20px;
  bottom: 10px;
}

.close-button {
  background-color: black;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;

  position: absolute;
  top: -10px;
  left: -10px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.timestamp-video {
  background-color: black;
  color: white;
  padding: 3px 5px;

  position: absolute;
  bottom: 10px;
  right: 10px;
}


.product-container {
  position: relative;
  display: inline-block;
  top: 300px;
  left: 40%;
  right: 60%;

  z-index: 0;
}
.product-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.product-offer {
  position: absolute;
  top: 15px;
  right: 0;

  background-color: black;
  color: white;
  font-size: 15px;

  padding: 9px 9px;
}
.p-button-cover {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 80px;
  justify-content: center;
  align-items: center;

  background-color: rgba(255, 255, 255, 0.6);
}
.product-addtocart-button {
  padding: 8px 12px;

  border: solid;
  border-width: 1px;
  font-size: 13px;

  background-color: white;
  
}


.calculator {
  background-image: linear-gradient(to bottom right, rgb(235, 235, 235), rgb(255, 226, 226));
  width: 120px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;

  display: grid;
  align-items: center;
  justify-content: center;

  border-radius: 5px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.calculatorButton {
  height: 30px;
  width: 25px;
  margin-top: 20px;

  background-color: white;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 3px;
}
.button-equal {
  background-color: rgb(255, 226, 226);
  color: black;
}
#calculatorScreenOuter {
  height: 50px;
  width: 110px;
  background-color: rgb(255, 255, 255);
  border: solid;
  border-radius: 5px;
  border-width: 5px;
  border-color: rgb(255, 255, 255);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}
#calculatorScreen {
  padding: 10px;
}
.calculator-row{
  text-align: center;
}
