@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: black;
  font-family: 'Poppins', sans-serif;
  color: white;
  text-align: center;
}

h1 {
  font-size: 60px;
}

p1 {
  font-size: 35px;
}

#blue {
  color: rgb(73, 131, 255);
  font-weight: bold;
}

nav {
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
  rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}

nav .logo {
  display: flex;
  align-items: center;
}

nav .logo h1 {
  font-size: 1.1rem;
  background: linear-gradient(to right, #ffffff 0%, #505050 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
  transition: all ease-in-out 0.2s;
}

nav ul li a:hover {
  background-color: #1a1a1a;
}

#user-profile {
  display: none;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  margin: 20px auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px 0;
  border: 5px solid #000000;
}

#user-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

#signin, #logout, #bookmarklet-btn {
  background-color: #0f0f0f;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-family: 'Poppins', sans-serif;
}

#signin:hover, #logout:hover, #bookmarklet-btn:hover {
  background-color: #1d1d1d;
}

#bookmarklet-link {
  color:rgb(73, 131, 255)
}

#logout {
  display: none;
  margin-top: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.modal-content {
  background-color: #1a1a1a;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  transition: all ease-in-out 0.2s;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

#roddynolongerrichbox {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 20px auto;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

#gamepanel {
  margin-left: 0.5px;
  margin-right: 0.5px;
  width: 300px;
  height: 200px;
  border-radius: 15px;
  border: 5px solid transparent; 
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.2s ease-in-out;
}

#gamepanel:hover {
  transform: scale(1.07);
  cursor: pointer;
}

#message {
  font-size: 30px;
}

#dragtext {
  font-size: 30px;
}

#bookmarklet-title {
  font-size: 45px;
}

#bookmarklet-link {
  font-size: 28px;
}