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

html,body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
html {
    font-family: var(--font-text);
    font-weight: var(--font-weight-1);
    color: var(--text-color-1);
}
body {
    background-color: var(--background-color-1);
}

:root {
    --font-text: 'Century Gothic', sans-serif;
    --dark-color-1: #1D1D1D;
    --dark-color-2: #242424;
    --dark-color-3: #131313;
    --dark-color-4: #1A1A1A;
    --white-color: #FFFFFF;
    --white-color-2: #eeeeee;
    --white-color-3: #D9D9D9;
    --gray-color-1: #777777;
    --gray-color-2: #323232;
    --tag-color-1: #C56207;
    --hover-color-1: #C56207;
    --background-color-1: #1D1D1D;
    --text-color-1: #FFFFFF;
    --text-color-2: #B4B4B4;
    --text-color-3: #e7e7e7;
    --portafolio-card-border: hsla(0, 0%, 48%, 1), hsla(0, 0%, 48%, 1);
    
    --header-font-text: 0.9rem;
    
    --hover-color-animation-1: 0.2s;
    
    --button-padding-1: 0.5rem 1.7rem;
    --button-rounded-1: 5px;
    --button-rounded-2: 7px;
    --button-text-hover-1: #1D1D1D;
    
    --font-weight-1: 400;
    --font-size-1: 400;
    --landing-title-size-1: 4rem;
    --landing-title-size-1-m: 2rem;
    --landing-title-line-height-1: 4.5rem;
    --landing-title-line-height-1-m: 2.5rem;
    --landing-title-weight-1: 600;
    --title-size-1: 1.7rem;
    --title-size-1-m: 1.5rem;
    --subtitle-size-1: 1.2rem;
    --subtitle-size-2: 1.3rem;
    --text-size-1: 1.4rem;
    --text-size-1-m: 1.2rem;
    --text-size-2-m: 1.1rem;
    --text-weight-1: 300;
    --button-text-weight-1: 600;
    --number-text-size: 2rem;
}

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

/* Botón whatsapp flotante */
.my-float {
    margin: 0
}

.float1 {
    box-shadow: 2px 2px 3px #393939;
    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
}

a {
    text-decoration: none;
    color: var(--text-color-1);
}
button {
    background-color: transparent;
    border-style: none;
}
main {
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
