html {
    scroll-behavior: smooth;
}

body {
    background-color: #27374D;
    border: 0px;
    margin: 0px;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 3px;
    font-weight: normal;
    color: #9DB2BF;
    text-shadow: 5px 5px 5px #27374D;
}

a {
    color: #DDE6ED;
}

#container {
    width: 100%;
    overflow: hidden;
}

#menu3d {
    position: fixed;
    top: 260px;
    left: 36px;
    width: 40px;
    z-index: 1000;
}

#mititulo {
    position: fixed;
    top: 60px;
    left: 40px;
    z-index: 1000;
}

#minombre {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 1000;
    font-weight: bolder;
}

#micorreo {
    position: fixed;
    top: 80px;
    left: 40px;
    z-index: 1000;
    font-size: smaller;
}

#miotro {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 1000;
}
#mierror {
    position: fixed;
    bottom: 20px;
    left: 40px;
    z-index: 1000;
    background-color: red;
}
#my3d {
    z-index: -1;
    width: 90%;
    overflow: hidden;
}





.button {
    background-color: #9DB2BF;
    border: none;
    color: #27374D;
    /* padding: 20px; */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 5px 5px 5px #27374D;
}

.button:hover {
    animation: mymove 0.5s alternate-reverse;
}

@keyframes mymove {
    0% {
        transform: scale(0.75);
        background-color: #9DB2BF;
    }

    25% {
        transform: scale(1.0);
        background-color: #27374D;
    }

    75% {
        transform: scale(1.25);
        background-color: #9DB2BF;
    }

    100% {
        transform: scale(1.0);
        background-color: #27374D;
    }
}