/* -------------------- COMMON -------------------- */

body{
    margin: 100px 0 0 0;
    font-family: 'Min-Sans', sans-serif;
    background-color: rgb(22, 31, 30);
    color: rgb(237, 228, 154);
}
h1 {
    font-family: 'Chocolates', sans-serif;
    font-weight: bold;
    font-style: italic;
    margin-left: 10px;
}
.align-right-button {
    float: right;
}
.submit-button {
    padding: 5px 5px;
    background-color: rgb(237, 228, 154);
    border:0;
    border-radius: 5px;
}
.submit-button:hover {
    transition: 0.2s;
    background-color: rgb(198, 160, 2);
    cursor:pointer;
}

/* .custom-field input {
    border: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f2f2f200;
    padding: var(--field-padding);
    border-radius: 3px;
    width: 250px;
    outline: none;
    font-size: 14px;
    background:
        linear-gradient(90deg, rgb(237, 228, 154), rgb(237, 228, 154)) center bottom/0 0.15em no-repeat,
        linear-gradient(90deg, rgb(237, 228, 154), rgb(237, 228, 154)) left bottom/100% 0.15em no-repeat,
        linear-gradient(90deg, #fafafa00, #fafafa00) left bottom/100% no-repeat;
    transition: background-size 0.3s ease;
}
.custom-field .placeholder {
    position: absolute;
    left: var(--field-padding);
    width: calc(100% - (var(--field-padding) * 2));
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    top: 22px;
    line-height: 100%;
    transform: translateY(-50%);
    color: rgba(237, 227, 154, 0.733);
    transition: 
      top 0.3s ease,
      color 0.3s ease,
      font-size 0.3s ease;
}
.custom-field input.dirty + .placeholder,
.custom-field input:focus + .placeholder,
.custom-field input:not(:placeholder-shown) + .placeholder {
  top: -10px;
  font-size: 10px;
  color: rgb(237, 228, 154);
} */

a:link {
    color: rgb(237, 228, 154);
}
a:visited {
    color: rgb(237, 228, 154);
}
a:hover {
    color: rgb(198, 160, 2);
}
a span {
    text-decoration:unset;
}

.centre {
    text-align: center;
}

/* -------------------- NAVBAR -------------------- */


.navbar {
    font-family: 'Chocolates', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: rgb(60, 78, 22);
    box-shadow: 0px 1px 8px #000000;
}

.navbar ul {
    display: flex;
    justify-content:space-between;
    align-items: center;
    list-style-type: none;
    margin: unset;
    padding: unset;
}
.title {
    font-weight: bolder;
    background-color: rgb(237, 228, 154);
    border-bottom-right-radius: 5px;
    padding: 20px 5%;
}
a.title li {
    color:rgb(22, 31, 30);
}
.title:hover{
    transition: 0.3s;
    background-color: rgb(198, 160, 2);
}
.navbar div {
    display: flex;
    justify-content:space-between;
}
.navbar div li:first-of-type {
    font-weight: unset;
}
.navbar div a {
    text-decoration: none;
    color:rgb(237, 228, 154);
    padding: 20px 10px;
    align-self: center;
}
.navbar div a:hover {
    transition:0.2s;
    background-color: rgb(22, 31, 30);
}
.contact-button {
    padding: 10px 15px;
    margin-right: 30px;
    background-color: rgb(237, 228, 154);
    border-radius: 20px;
}
.contact-button a {
    text-decoration: none;
}
.contact-button li {
    color: rgb(22, 31, 30);
}
.contact-button:hover {
    transition: 0.2s;
    background-color: rgb(198, 160, 2);
}
.link {
    text-decoration: none;
}