:root {
  --dark_blue: #243043;
  --blue: #3DE7F2;
  --light_blue: #BAF0F4;
  --link_blue: #0061ff;
  --white_smoke: #fefefe;
  --white : #ffffff;
  --black : #333333;
  --button_blue : #0070E0;
  --red : #ff686b;
}

@font-face {
  font-family: "promt";
  src: url("../font/prompt-regular.ttf");
}
* {
  margin: 0;
  padding: 0;
  font-family: "promt", sans-serif;
  box-sizing: border-box;
}

.container {
  background-color: var(--white_smoke);
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  box-shadow: -7px 6px 5px -7px rgba(51, 51, 51, 0.51);
  -webkit-box-shadow: -7px 6px 5px -7px rgba(51, 51, 51, 0.51);
  -moz-box-shadow: -7px 6px 5px -7px rgba(51, 51, 51, 0.51);
}
.navbar a {
  text-decoration: none;
  color: var(--black);
  user-select: none;
}
.navbar h1 {
  font-size: 2.5rem;
  user-select: none;
}
#icon_droplink {
  width: 70px;
  height: auto;
}

#profile {
  position: absolute;
  top: 0;
  right: 3%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#profile span{
  font-size: 1.5rem;
  user-select: none;
}
#profile img{
  width: 25px;
  height: auto;
  cursor: pointer;
  margin-left: 10px;
  border-radius: 50%;
}
