/* Reset some default styles */
html {
    background: #e6e9e9;
}

body {
    background: #fff;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0; /* Reset default margin */
}

.mainlogo {
    border-width: px;
    border-color: aqua;
    display: grid;
    place-items: center;
    height: 100%;
}

.center-icons {
    text-align: center;
}

/* Style the individual social media icons */
.icon-img {
    display: inline-block;   
    min-width: 32px;
    max-width: 42px;
    border: 3%; 
    padding: 4%;
    margin: 35px; /* Add spacing between icons */
  /*  margin-left: 50px; Add spacing between icons */
    position: relative;
    transition: transform 0.5s ease-in-out;
}

/* Define the hover animation */
.icon-img:hover {
    transform: scale(1.2);
    transition: transform 0.5s ease-in-out;
}

/* Define the hover animation */
.icon-img:active {
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

/* Style the container */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Style the tooltip */
.social-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.social-icon::after {
    content: attr(data-tooltip);
    background-color: dimgray;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    position: absolute;
    bottom: 75%;
    text-align: center;
    transform: translateX(-50%);
    opacity: .0;
    transition: opacity .7s;
    white-space: nowrap;
}

/* Show the tooltip on hover */
.social-icon:hover::after {
    opacity: .8;
    transition: opacity 2s;
}

p, h3 {
    text-align: center;
}

a {
    text-decoration: none;
}


.parent {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 10fr 5fr 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 100vh;
}

.div1 { grid-area: 1 / 1 / 2 / 6; }
.div2 { grid-area: 2 / 1 / 3 / 6; }
.div3 { grid-area: 3 / 1 / 4 / 6; }

footer {
    background-color: #F4F6F7;
    padding: 20px 0;
}

/* body {
    border-width: 5px;
    border-color: #333;
    background: rgb(174, 220, 152);
} */

