#main-container {
    justify-content: space-around!important;
}

#title, #logo, #btns-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

#title {
    color: white;
    font-size: 12rem;
    line-height: 12rem;
    font-family: "x-files";
}

#logo {
    width: 500px;
    height: 500px;
    border: 10px solid var(--logo-border);
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: white;
}

#logo > img {
    width: 80%;
    margin-left: 10%;
}

#btns-row {
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
}

.home-btn {
    width: 80%;
    max-width: 300px;

    img {
        width: 100%;
    }
}

.btn-social {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    font-size: 5rem;
}

@media (min-width: 901px) and (max-width: 1024px) {
    #title {
        font-size: 10rem;
        line-height: 10rem;
    }

    .home-btn {
        max-width: 250px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    #title {
        font-size: 8rem;
        line-height: 8rem;
    }

    #logo {
        width: 400px;
        height: 400px;
        border: 8px solid var(--logo-border);
    }

    .home-btn {
        max-width: 200px;
    }
}

@media (min-width: 401px) and (max-width: 600px) {
    #title {
        font-size: 7rem;
        line-height: 7rem;
        text-align: center;
    }

    #logo {
        width: 350px;
        height: 350px;
        border: 6px solid var(--logo-border);
    }

    #btns-row {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .home-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 400px) {
    #title {
        font-size: 7rem;
        line-height: 7rem;
        text-align: center;
    }

    #logo {
        width: 300px;
        height: 300px;
        border: 5px solid var(--logo-border);
    }

    #btns-row {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
    }

    .home-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 350px) {

    #main-container {
        justify-content: center;
    }

    #logo {
        width: 250px;
        height: 250px;
        border: 4px solid var(--logo-border);
    }

    .home-btn {
        max-width: 150px;
    }
}

@media only screen and (hover: none) and (pointer: coarse){
    @media (orientation: landscape) and (max-width: 850px) {
        #main-container {
            flex-direction: row;
            flex-wrap: wrap;
            align-content: space-around;
        }

        #title {
            width: 100%;
            font-size: 6rem;
            line-height: 6rem;
        }

        .home-btn {
            width: 100%;
            max-width: 200px;
        }

        #logo {
            width: 200px;
            height: 200px;
            border: 5px solid var(--logo-border);
        }
    }
}
