/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  --base-color: hsla(216, 96%, 56%, 1);
  --white-blue: #eaf1f9;
  --dark-blue: #152b41;

  /*========== Font and typography ==========*/
  --body-font: "Mulish", sans-serif;
  --biggest-font-size: 2rem;
  --small-font-size: 14px;

  /*========== Font weight ==========*/
  --font-bold: 700;
  --font-medium: 500;
  --font-light: 300;

  /*========== Margins ==========*/
  --space-xsmall: 0.5rem;
  --space-small: 1rem;
  --space-medium: 1.5rem;
  --space-large: 2rem;
  --space-xlarge: 3rem;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: hsla(216, 96%, 56%, 1);

  background: linear-gradient(
    90deg,
    hsla(216, 96%, 56%, 1) 0%,
    hsla(178, 64%, 65%, 1) 100%
  );

  background: -moz-linear-gradient(
    90deg,
    hsla(216, 96%, 56%, 1) 0%,
    hsla(178, 64%, 65%, 1) 100%
  );

  background: -webkit-linear-gradient(
    90deg,
    hsla(216, 96%, 56%, 1) 0%,
    hsla(178, 64%, 65%, 1) 100%
  );
  color: var(--dark-blue);
  width: 100vw;
  min-height: 100vh;
  padding: 2vh 5vw 3vh;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
  color: inherit;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
}

.flexColumnCenter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.flexRowEvenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.flexRowCenter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.flexRowStart {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

/*=============== BASIC HEADER & FOOTER ===============*/
footer {
  position: absolute;
  bottom: 3vh;
}

footer p {
  font-size: var(--small-font-size);
  color: rgb(180, 214, 235);
}

/*=============== PROJECT RELATED ===============*/
.panel {
  width: 100%;
  max-width: 400px;
  background-color: white;
  padding: 1.5rem 0.5rem;
  border-radius: 15px;
  box-shadow: 2px 2px 8px rgba(18, 21, 42, 0.3);
  text-align: center;
}

.panel_message {
  font-weight: bold;
  margin: 2rem 2rem 3.5rem;
  font-size: 18px;
}

.optionsContainer {
  margin-bottom: 4rem;
}

.option {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 1.5rem;
  width: 55px;
}

.option figure {
  max-width: 42px;
  margin-bottom: 1rem;
}

.option figure img {
  width: 100%;
}

.option p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.panel button {
  background-color: var(--base-color);
  color: white;
  padding: 1rem 3.5rem;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.panel button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.panel i {
  color: #de3163;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.panel strong {
  margin-bottom: 0.5em;
}

.panel .feedback {
  font-size: 18px;
  color: var(--base-color);
}

.panel .finalMessage {
  padding: 1rem 2rem 0.5rem;
}

/*=============== MEDIA QUERIES ===============*/
/* For large devices */
@media screen and (min-width: 1281px) {
}
