* {
  box-sizing: border-box;
}

body {
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  font-family: "Lexend deca";
}

input,
textarea,
button,
select {
  font: inherit;
}
/* height 100vh */

.full-screen-height {
  height: 100vh;
}

/* button styles */
/* this needs to be at the top or all other styles get overridden */

.ax-button {
  all: unset;
  outline: revert;
  box-sizing: border-box;
}

/* border radius */

.radius-sm {
  border-radius: 5px;
}

.radius-med {
  border-radius: 10px;
}

.radius-lrg {
  border-radius: 15px;
}

/* font sizes and styles */
h1,
h2,
h3,
p {
  margin: 0;
}

.align-text {
  text-align: center;
}

.font-lrg {
  font-size: 2rem;
}

.font-med {
  font-size: 1.5rem;
}

.font-sm {
  font-size: 1rem;
}

/* font weights */

.weight-sm {
  font-weight: 200;
}

.weight-med {
  font-weight: 300;
}

.weight-lrg {
  font-weight: 800;
}

/* padding */

.padding-sm {
  padding: 5px;
}

.padding-med {
  padding: 10px;
}

.padding-lrg {
  padding: 20px;
}

.padding-up-dwn-sm {
  padding: 5px 0;
}

.padding-up-dwn-med {
  padding: 10px 0;
}

.padding-up-dwn-lrg {
  padding: 15px 0;
}

/* margins */

.margin-sm {
  margin: 5px;
}

.margin-med {
  margin: 10px;
}

.margin-lrg {
  margin: 15px;
}

.margin-top-sm {
  margin-top: 5px;
}

.margin-top-med {
  margin-top: 10px;
}

.margin-bottom-sm {
  margin-bottom: 5px;
}

.margin-bottom-med {
  margin-bottom: 10px;
}

.margin-bottom-lrg {
  margin-bottom: 15px;
}

.margin-top-bottom-med {
  margin: 10px 0;
}

.margin-left-med {
  margin-left: 10px;
}

.margin-left-lrg {
  margin-left: 15px;
}

.margin-right-med {
  margin-right: 10px;
}

.margin-left-right-sm {
  margin: 0 5px;
}

.margin-left-right-med {
  margin: 0 10px 0 10px;
}

/* center text */

.center-text {
  text-align: center;
}

/* flex box styles */

.flex-plain {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-center-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.flex-right-column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.flex-right-column-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.flex-space-between {
  display: flex;
  justify-content: space-between;
}

.flex-space-around {
  display: flex;
  justify-content: space-around;
}

.gap-sm {
  gap: 5px;
}

.gap-med {
  gap: 10px;
}

.gap-lrg {
  gap: 20px;
}

/* form styles */

.standard-submit {
  border: none;
  font-size: 1.5rem;
  background-color: var(--subDark);
  color: var(--primeLight);
  font-family: "Lexend deca";
}

.standard-submit:hover {
  cursor: pointer;
  background-color: var(--primeLight);
  color: var(--subDark);
}

input {
  border: none;
  background-color: var(--subDark);
}

input:focus {
  border: none;
  outline: none;
  background-color: var(--primeLight);
}

input:active {
  border: none;
  outline: none;
  background-color: var(--primeLight);
}

input:hover {
  border: none;
  outline: none;
  background-color: var(--primeLight);
}

/* anchor styles */
.standard-anchor {
  text-decoration: none;
  color: var(--primeLight);
  background-color: var(--primeDark);
  z-index: 1;
}

.standard-anchor:hover {
  color: var(--subDark);
  background-color: var(--subLight);
  cursor: pointer;
}

/* log out styles */
.log-out {
  margin: 0 10px 10px 0;
}

/* avatar and image styles */

.avatar-image {
  border-radius: 50%;
  background-color: rgb(210, 224, 251);
  outline: 1px solid black;
}

/* return button */

.standard-return-profile {
  position: fixed;
  bottom: 20px;
  right: 10px;
}

.img-auto-height {
  width: 100%;
  height: auto;
}
