* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
    font-family: "Helvetica";
}

@font-face {
    font-family: 'Helvetica';
    src: url('./fonts/Helvetica.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Bold';
    src: url('./fonts/Helvetica-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
}

html,
body {
    height: 100vh;
    font-family: Helvetica;
}

.home-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: black;
}

.logo {
    color: white;
}

.companys-name {
    font-size: 120px;
    color: greenyellow;
}

#companyName {
    display: inline-block;
    transition: filter 0.5s, opacity 0.5s;
    font-size: 180px;
    font-weight: bold;
    /* color: #8161ff; */
    color: #00ff00;
    /* color: greenyellow; */
    /* verde futurista */
}

@media screen and (max-width: 1000px) {
    #companyName {
        font-size: 140px;        
    }

}

@media screen and (max-width: 768px) {

     #companyName {
        font-size: 100px;        
    }
}

@media screen and (max-width: 500px) {
     #companyName {
        font-size: 80px;        
    }
}
@media screen and (max-width: 400px) {
     #companyName {
        font-size: 50px;        
    }
}

/****4:30*******/