body{
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
.logo{
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subtitle{
    color: white;
    font-family: "Lato";
    font-size: 2vw;
}

@media (max-width: 1000px) {
    .logo{
        width: 50%;
    }
    .subtitle{
        font-size: 4vw;
    }
}