html {
    font-size: 16px;
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "Bunya";
    src: url(../assets/fonts/Bunya-Light_PERSONAL.ttf);
}

@font-face {
    font-family: "BunyaBold";
    src: url(../assets/fonts/Bunya-Regular_PERSONAL.ttf);
}

@font-face {
    font-family: "Kumbh";
    src: url(../assets/fonts/KumbhSans-VariableFont_YOPQ\,wght.ttf);
}

body {
    background:
      radial-gradient(50% 50% at 100% 0,#f5f6df 0%  5% ,#e9e5d0 6%  15%,#f5f6df 16% 25%,#e9e5d0 26% 35%,#f5f6df 36% 45%,
       #e9e5d0 46% 55%,#f5f6df 56% 65%,#e9e5d0 66% 75%,#f5f6df 76% 85%,#e9e5d0 86% 95%,
       #0000 96%),
      radial-gradient(50% 50% at 0 100%,#f5f6df 0%  5% ,#e9e5d0 6%  15%,#f5f6df 16% 25%,#e9e5d0 26% 35%,#f5f6df 36% 45%,
       #e9e5d0 46% 55%,#f5f6df 56% 65%,#e9e5d0 66% 75%,#f5f6df 76% 85%,#e9e5d0 86% 95%,
       #0000 96%),
      radial-gradient(50% 50%,#f5f6df 0%  5% ,#e9e5d0 6%  15%,#f5f6df 16% 25%,#e9e5d0 26% 35%,#f5f6df 36% 45%,
       #e9e5d0 46% 55%,#f5f6df 56% 65%,#e9e5d0 66% 75%,#f5f6df 76% 85%,#e9e5d0 86% 95%,
       #0000 96%),
      radial-gradient(50% 50%,#f5f6df 0%  5% ,#e9e5d0 6%  15%,#f5f6df 16% 25%,#e9e5d0 26% 35%,#f5f6df 36% 45%,
       #e9e5d0 46% 55%,#f5f6df 56% 65%,#e9e5d0 66% 75%,#f5f6df 76% 85%,#e9e5d0 86% 95%,
       #0000 96%) 32px 32px;
    background-size: 64px 64px;
    background-color: #f5f6df;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1rem;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

h1 {
    font-family: "Bunya";
    font-size: 2.5rem;
    margin: 0;
    color: #393E41;
    margin-bottom: 6px;
}

h1 span {
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: #393E41;
    transition: all 0.2s;
}

a:hover {
    transition: all 0.2s;
    color: #d36135;
}

p {
    font-family: "Kumbh";
    font-size: 1.3rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
    text-align: center;
}

h2 {
    font-family: "Kumbh";
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
    color: #393E41;
}

h3 {
    font-family: "BunyaBold";
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 0;
    font-size: 2.5rem;
    color: #393E41;
}



/* Contact */

label {
    font-family: "Kumbh";
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
}

input {
    font-family: "Kumbh";
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 10px;
    background-color: #EFEAE6;
    border: 2px solid #74443D50;
}

textarea {
    font-family: "Kumbh";
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 10px;
    background-color: #EFEAE6;
    border: 2px solid #74443D50;
}

#form {
    margin: auto;
    display: flex;
    flex-direction: column;
    width: 35rem;
}

.formMsg {
    resize: none;
    height: 10rem;
}

.buttonPlacement {
    display: flex;
    justify-content: end;
}

.formSubmit {
    font-family: "Kumbh";
    font-size: 1.2rem;
    width: min-content;
    border-radius: 30px;
    margin-top: 20px;
    padding: 10px 15px 10px 15px;
    border: none;
    background-color: #B2675E;
    color: #EFEAE6;
}



/* Footer */

.footerSpace {
    height: 5rem;
}

.footerFans {
    display: flex;
    gap: 10px;
    margin: auto;
    margin-bottom: 10px;
    justify-content: center;
}

footer img {
    height: 30px;
}