* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body,
html {
    height: 100%;
    width: 100%;
}

/* Banner Section */
body {
    background: url('assets/background.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

.doti-logo {
    width: 60%;
    margin: auto;
}

.doti-logo img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .doti-logo {
        width: 80%;
    }
}

@media screen and (max-width: 625px) {
    .doti-logo {
        width: 100%;
    }
    
}

