@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
    --font: 'Roboto', sans-serif;
    --background: #0b2c3b;
    --text: #111;
    --box-shadow: #f3801d;
    --cream: #f8e6c4;
}

body{
    background: var(--background) url(img/pem.jpg) repeat center bottom;
    background-size: contain;
    color: var(--cream);
    height: 100vh;
}



#userPhoto{
    width: 96px;
    height: 96px;

    display: block;

    margin: 35px auto 20px;

    border-radius: 50%;
    border: solid var(--cream) 2px;
}

#userName{
    color: var(--cream);
    font-family: var(--font);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
    display: block;
}

#links{
    max-width: 675px;
    width: 80%;
    display: block;
    margin: 27px auto;
    border: 2px solid #111;
    padding: 1rem;
    backdrop-filter: blur(30px);
}
.link {
	background-color: var(--cream);
	color: var(--text);
	display: block;
	text-align: center;
  letter-spacing: 2px;
  cursor: pointer;
	margin-bottom: 1.2rem;
	padding: 1rem;
	text-decoration: none;
	font-size: 1rem;
  font-family: var(--font);
	font-weight: bold;
	transition: all 0.15s;
	box-shadow: 4px 4px var(--box-shadow);
	border: 4px solid #111;
}

.link:hover, .link:focus {
	background: #e0e0e0;
	box-shadow: 2px 2px var(--box-shadow);
    cursor: pointer;
	transform: translate(2px);
    transition: all ease-in 0.3s;
}

.water-mark-section {
    background-color: #ffffffa7;
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 1rem;
}
.water-mark-continer{
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-left: 8px;
    text-decoration: none;
}
.water-mark{
  width: 50px;
  height: 50px;
  background-color: #fc2;
  border-radius: 20%;
  border: 2px solid #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-left: -3rem;
}
.D1{
  color: #111;
  font-size: 1.4rem;
  text-decoration: none;
}
.water-mark-title{
position: fixed;
bottom: 3.46rem;
  color: #f8e6c4;
  font-size: 1.4rem;
}