@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');

html {
  box-sizing: border-box;
  font-size: 100%;
  min-height: 100vh;
}

body {
  background: #121212;
  color: #fff;
  margin: 0px;
  padding: 0px;
  font-size: 25px;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

a,
a::before,
a::after {
  color: inherit;
  text-decoration: none;
}

header.header {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
}

.btn {
  background: #87ff8c;
  padding: 10px 20px;
  display: inline-flex;
  border-radius: 5px;
  color: #000;
  cursor: pointer;
}

.title {
  font-size: 55px;
  font-weight: bold;
}

.description {
  font-size: 30px;
}

.main-left {
  max-width: 700px;
  width: 100%;
}

main#main {
  display: flex;
  max-width: 100%;
  padding: 10px 20px;
  flex-grow: 1;
  align-items: center;
}

.main-right img {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}

.main-left > * {
  margin: 25px 0px;
}

.menu-item {
  margin: 0px 30px;
}

.main-right {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
}

.action-form {
    display: flex;
    position: fixed;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    background: #121212;
    border-right: 1px solid #2f2f2f;
    max-width: 400px;
    width: 100%;
}

.action-form-head {
    display: flex;
    border-bottom: 1px solid #2f2f2f;
    padding: 10px 20px;
    align-items: center;
}

.action-form-header-placeholder {
    font-size: 16px;
    flex-grow: 1;
}

fieldset {
    padding: 0px;
    border: 1px solid #fff;
    margin: 10px 10px;
    border-radius: 10px;
}

fieldset > input {
    padding: 10px 20px;
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
}

legend {
    font-size: 15px;
}

.btn.btn-send-form {
    font-size: 15px;
    margin: 5px 10px;
    justify-content: center;
}

form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.action-form-body {
    flex-grow: 1;
    display: flex;
    height: 100%;
    align-items: center;
}

.action-form-cancel-btn {
    display: grid;
    background: #353535;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
  main#main {
    flex-direction: column-reverse;
  }

  menu {
    display: none;
  }

  .title {
    font-size: 1.4em;
  }

  .description {
    font-size: 0.7em;
  }

  .btn {
    font-size: 0.7em;
  }

  logo > img {
    width: 60px;
  }
}

