@import url("https://fonts.googleapis.com/css?family=Sansita:700,400");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-image: url("../img/background.png");
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-family: "Sansita", Helvetica;
    color: #351339;
    position: relative;
}

.title{
    font-size: 8rem;
    font-weight: 700;
}

.subtitle{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    font-weight: 400;
}

.getting-social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.develop-by{
    position: absolute;
    bottom: 0;
    width: 50vw;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #351339;
}

.mixxos-logo{
    max-width: 100%;
    height: auto;
}


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    body{
        background-position: center center;
        background-repeat: no-repeat;
        flex-wrap: nowrap;
    }

    .title{
        font-size: 5rem;
        margin-bottom: 1rem;
    }

    .subtitle{
        font-size: 2rem;
    }

    .develop-by{
        bottom: 2rem;
        font-size: 2rem;
        width: 80vw;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    
}