body {
    background-color: #111;
    margin: 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Muli-black';
    color: white;
    min-height: 100vh;
}

.img {
    width: 120px;
    height: 120px;
    z-index: 999;
}

.title {
    font-size: 60px;
    margin-top: -20px;
    z-index: 999;
}

p {
    text-align: center;
    font-size: 26px;
    margin-top: -20px;
    z-index: 999;
}

a, li {
    text-decoration: none;
    list-style: none;
}

.social-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* align-items: baseline; */
    gap: 15px;
    margin-top: 0px;
    /* margin-left: -40px; */
    z-index: 999;
}

.social-link {
    background-color: white;
    box-shadow: 0 5px 20px 1px #1749df9d;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    color: black;
    transition: .2s ease;
    padding: 7px;
}

.social-link:hover {
    background-color: #0166FA;
    color: white;
    transition: .2s ease;
}

.wave-div {
    width: 100%;
}

.wave {
    width: 100%;
    margin-top: -100px;
    z-index: -1;
}

@media (max-width: 550px) {
    .wave {
        margin-top: 0px;
    }

    .title {
        font-size: 50px;
    }

    p {
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .title {
        font-size: 40px;
    }

    .img {
        width: 100px;
        height: 100px;
    }

    p {
        margin-top: -10px;
        font-size: 20px;
    }

    .social-items {
        margin-top: 5px;
    }
}