@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
  justify-content: center;
  height: 100vh;
  background: #f4f4f4;
  overflow: hidden;
}

.tinder-container {
  position: absolute;
  background-color: #f4f4f4;
  width: 100%;
  height: 85vh;
  margin-top: 50px;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  transition: opacity 1s ease-out;
}

.hidden {
  opacity: 0;
}

.overview-container {
  position: absolute;
  background-color: #f4f4f4;
  width: 100%;
  height: 85vh;
  margin-top: 50px;
  display: flex;
  align-items: left;
}

.card {
  padding: 20px;
  position: absolute;
  width: 30%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-out;
  cursor: grab;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  user-select: none; /* Prevent text selection */
  -webkit-user-drag: none; /* Prevent image dragging in WebKit browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  pointer-events: auto; /* Ensures interactions like clicks still work */
}

.card-contents {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: scroll;
}

.card-contents h1 {
 align-self: flex-start; 
 margin:0;
 margin-top:15px;
 line-height:4vh;
 font-family:'Noto Sans', sans-serif;
 font-size: clamp(20px, 2vw, 40px);
}

.card-contents h2 {
 align-self: flex-start; 
 margin:0;
 margin-top:10px;
 font-family:'Noto Sans', sans-serif;
 font-weight:500;
 color:#555;
}

.card-contents p {
 align-self: flex-start; 
 margin:0;
 margin-top:25px;
 font-family:'Noto Sans', sans-serif;
 font-weight:200;
}

.pfp {
  width: 90%;
  height: auto;
  border-radius: 10px;
  pointer-events: none; /* Prevents interaction */
  -webkit-user-drag: none; /* Disable image dragging in WebKit browsers */
}

.minipfp {
  width: auto;
  height: 100%;
  border-radius: 10px;
  pointer-events: none; /* Prevents interaction */
  -webkit-user-drag: none; /* Disable image dragging in WebKit browsers */
}

.minicard {
  padding: 10px;
  margin: 10px;
  position: relative;
  width: auto;
  height: 20%;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-out;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers horizontally */
  align-items: center;
  user-select: none; /* Prevent text selection */
  -webkit-user-drag: none; /* Prevent image dragging in WebKit browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  pointer-events: auto; /* Ensures interactions like clicks still work */
}
