body {
    font-family: 'IBM Plex Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: whitesmoke;
}

#root {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: gray;
    background-image: linear-gradient(rgba(0, 0, 0, 0.59), rgba(0, 0, 0, 0.59)), url('public/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#logo {
    width: 20vw;
}

#hero-title {
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
    margin-left: 2rem;
    margin-right: 2rem;
}

#hero-desc {
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    margin-left: 2rem;
    margin-right: 2rem;
}

#links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 5rem;
    height: 6rem;
}

#links a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#links a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8rem;
    height: 8rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 80ms ease-in-out;
    pointer-events: none;
}

#links a:hover::before {
    opacity: 1;
}

.icon {
    position: relative;
    width: 5rem;
    height: 5rem;

    transition: all 80ms ease-in-out;
}

.icon:hover {
    width: 6rem;
    height: 6rem;
}


@media (max-width: 1400px)
{
    #logo {
        width: 30vw;
    }
}

@media (max-width: 1000px)
{
    #logo {
        width: 40vw;
    }
}


@media (max-width: 750px)
{
    #logo {
        width: 50vw;
    }

    #hero-title {
        font-size: 1.8rem;
    }

    #hero-desc {
        font-size: 1.1rem;
    }

    #links {
        gap: 3rem;
        margin-top: 3rem;
    }

    .icon {
        width: 4rem;
        height: 4rem;
    }

    .icon:hover {
        width: 5rem;
        height: 5rem;
    }
}

@media (max-width:550px)
{
    #logo {
        width: 60vw;
    }
}

@media (max-width: 480px)
{
    #hero-title {
        font-size: 1.5rem;
    }

    #hero-desc {
        font-size: 1rem;
    }

    #links {
        gap: 2.5rem;
        margin-top: 2rem;
    }

    .icon {
        width: 3rem;
        height: 3rem;
    }

    .icon:hover {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 420px)
{
    #root {
        align-items: start;
    }

    #content {
        margin-top: 3rem;
    }

    #logo {
        width: 70vw;
    }

    #hero-title {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    #hero-desc {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 370px)
{
    #links {
        gap: 2rem;
    }

    .icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .icon:hover {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (max-width: 310px)
{
    #logo {
        width: 80vw;
    }

    #links {
        gap: 1.5rem;
    }

    .icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .icon:hover {
        width: 3.5rem;
        height: 3.5rem;
    }
}

@media (max-width: 280px)
{
    #links {
        gap: 1.2rem;
    }

    .icon {
        width: 2rem;
        height: 2rem;
    }

    .icon:hover {
        width: 2.5rem;
        height: 2.5rem;
    }
}