* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    --golden-color-1: #C29E60;
    --golden-color-2: #B18944;
    --golden-color-3: #B18944;
    --golden-color-4: #BA9451;
    --golden-color-5: #BA9451;
    --golden-color-6: #9B8B71;
    --dark-color-1: #231F20;
    --dark-color-2: #4e4e4e;
    --dark-color-3: #5e5e5e;
    --gray-color-1: #AEAEAE;
    --gray-color-2: #C7C7C7;
    --gray-color-3: #F7F7F7;
    --white-color-1: #FFFFFF;
    --white-color-2: #e4e4e4;
    --blue-color-1: #131B42;
    --blue-color-2: #132042;
    --blue-color-3: #1D3A67;
    --blue-color-4: #1C59A1;
    --blue-color-5: #122745;
    --footer-bg-color: #0E162A;
    --title-font: 'Inter', 'sans-serif';
    --text-font: 'Roboto', 'sans-serif';
    --landing-title-size: 3.4rem;
    --landing-title-size-m: 2.4rem;
    --landing-title-line-height: 3.4rem;
    --landing-title-line-height-m: 2.4rem;
    --title-size: 3.4rem;
    --title-size-m: 2.4rem;
    --title-size-1-m: 2rem;
    --title-size-2-m: 1.6rem;
    --title-line-height: 2.4rem;
    --text-size: 1.2rem;
    --text-size-1: 1.4rem;
    --text-size-2: 1.6rem;
    --text-size-m: 1.1rem;
    --text-size-1-m: 0.9rem;
    --tag-size: 1.1rem;
    --tag-size-m: 0.7rem;
    --button-text-size-m: 1.7rem;
    --button-text-size-1: 1.3rem;
    --button-rounded: 3px;
    --button-padding: 0.7rem 1.5rem;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: var(--text-font);
    color: var(--dark-color-1);
}

main {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

button {
    border-style: none;
}

.float {
    position: fixed;
    width: fit-content;
    height: fit-content;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    border-radius: 110px;
    text-align: center;
    box-shadow: 2px 2px 3px #393939;
    z-index: 100
}

.my-float {
    margin: 0
}

.float1 {
    position: fixed;
    width: 90px;
    height: 90px;
    bottom: 20px;
    right: 94px;
    display: flex;
    object-fit: cover;
    cursor: pointer;
    padding: 1rem;
    text-align: center;
    z-index: 100
}
/* span footer color text */
#currentYear {
    color: white;
}