@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");

:root {
  --white: #fff;
  --black: #1c2b2d;
  --blue: #31326f;
  --light-blue: #005490;
  --color-primary: #9d0191;
  --color-sec: #db6400;
  --grey: #eee;
  --dark-grey: #222831;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Start */
.main {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tweet {
  width:30rem;
  height: 40rem;
  border: 2px solid var(--grey);
  border-radius: 3px;
  overflow-y:auto;
}

.tweet::-webkit-scrollbar {
  height: 5px;
  width: 8px;
  border: 1px solid #d5d5d5;
  background-color: #d5d5d5;
}

.tweet::-webkit-scrollbar-corner {
  --webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

.tweet::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  outline: 1px solid #eee;
}