input::placeholder {
    opacity: 0.7 !important;
}

body {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, #cce5ff, #99ccff);
    min-height: 100vh;
}

@media screen and (max-width: 675px) {
    .social-floater{
        visibility: hidden;
    }
}
@media only screen and (min-width: 675px) {
    .social-floater {
        position: fixed;
        bottom: 3%;
        left: 90%;
        transform: translateY(-50%);
        z-index: 1000;
    }

    .social-floater a {
        display: block;
        padding: 12px;
        font-size: 0.7em;
        color: rgb(0, 0, 0);
        background-color: #ffffff;
        border-radius: 10%;
        text-align: center;
        transition: background 0.3s;
    }

    /* .social-floater a:hover {
            background-color: #555;
        } */

    .social-floater a i {
        font-size: 20px;
    }

}