/* General */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

a {
    cursor: pointer;
}

/* Keyframes for pop-up animation */
@keyframes popup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Define the keyframes for the jump animation */
@keyframes jump {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0); 
    }
    40% {
        transform: translateY(-30px); 
    }
    60% {
        transform: translateY(-15px); 
    }
}

/* Icon container*/
.icon-container {
    display: flex;

    width: 100%;
    height: 50%;

    background-color: #FFFFFF;
    overflow: hidden;

    justify-content: center;
    align-items: start;

    text-align: center;
}

/* Container div*/
.container {
    display: flex;

    flex-direction: column;

    width: 100%;
    height: 20%;

    background-color: #FFFFFF;
    overflow: hidden;

    justify-content: end;
    align-items: center;

    text-align: center;
}

/* Icon at the top declaration of animations */
#coding-icon {
    animation: popup 0.4s ease-out 0s, jump 2s infinite ease-in-out;
}
/* Header 1 */
h1 {
    margin: 0;

    color: #001122;

    line-height: 1.2em;
    letter-spacing: -3.8px;
    
    font-size: 72px;
    font-weight: bold;
    font-family: Inter, 'sans-serif';

    animation: popup 0.4s ease-out 0.1s;
}
/* Header 3 */
h3 {
    margin: 0;

    opacity: 0.6;

    color: #666666;

    line-height: 1.5em;
    letter-spacing: -0.7px;

    font-size: 24px;
    font-weight: medium;
    font-family: Inter, 'sans-serif';

    animation: popup 0.4s ease-out 0.2s;
}

/* Social Medica Container div */
.sm {
    display: flex;

    flex-direction: row;

    gap: 10px;

    width: 100%;
    height: 20%;

    margin-top: 1%;

    background-color: #FFFFFF;
    overflow: hidden;

    justify-content: center;
    align-items: center;
}
/* Image */
img {
    margin: 0;
    padding: 0;
}
img#ig {
    width: 48px;
    height: 48px;
}
img#in {
    width: 50px;
    height: 50px;

    padding-right: 2px;
}
img#gm {
    width: 46px;
    height: 46px;
}