body{
    margin: 0px;
}

.screen{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

img{
    width: 200px;
    margin: auto;
}

.screen-h{
background-color: #121C30;
height: 100vh;
}

.title{
    text-align: center;
    font-size: 80px;
    font-family: 'Raleway', sans-serif;
    color: white;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 10px;
}

@media (max-width:768px){
    .title{
        text-align: center;
        font-size: 30px;
        font-family: 'Raleway', sans-serif;
        color: white;
        text-transform: uppercase;
        font-weight: 900;
        letter-spacing: 10px;
    }
    img{
        width: 150px;
        margin: auto;
    }
}