.hero_div {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: rgb(0, 0, 0);
    width: 100vw;
    background: radial-gradient(circle 70vmin at 70% 35%, #6ec4d3, transparent 60%), 
    radial-gradient(circle 35vmin at 30% 65%,#f0bc5d, transparent 95%),  rgb(245, 242, 237); 
}

.social-icon {
    height: 3em;
    width: 3em;
    margin: 0 10px;
    transition: transform .2s;
    cursor: pointer;
}
.social-icon:hover {
  
    transform: scale(1.2);
}

.name {
    color: #0f5764;
}

.menu_div {
    position: absolute;
    display: flex;
    gap: 20px;
    top: 10px;
    right: 10px;
}

.menu_div button {
    min-width: 120px;       
    text-align: center;
    background-color: white;
    border: 2px solid #0f5764;
    color: #0f5764;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}
.menu_div button:hover {
    background-color: #1a8294;
    color: white;
    transform: translateY(-2px);
}
.button-contact {
    background-color: #2e8c9c;
    color: white;
    border: none;
    width: auto;
    padding: 15px 20px;
    margin-right: 15px;
    border-radius: 10px;
    font-size: 1.4em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: left;
    justify-content: center;
    gap: 8px;
}
.button-contact:hover {
    background-color: #44bed3;
    transform: translateY(-2px);
}
.social_div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: stretch;
    background: radial-gradient(circle 70vmin at 70% 35%, #5cb0be, transparent 60%),

}

@media screen and (max-width: 640px) {
 
    .hero_div h1 {
        font-size: 2em;
    }
    .button-contact {
        font-size: 0.9em;
        max-width: 40vw;
    }
}

