@import url('https://fonts.googleapis.com/css?family=Anonymous+Pro&display=swap');

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
}

img {
    width: 80%;  
    max-width: 261px; 
    height: auto;  
}

#typed-text, #typed-text2 {
    font-family: 'Anonymous Pro', monospace;
    font-size: 24px;
    border-right: 2px solid;
    white-space: nowrap;
    overflow: hidden;
    margin: 20px 0;
    text-align: center; 
    color: #052d92;;
}

#typed-text2 {
    margin-top: 10px;
}

footer {
    position: fixed; 
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #052d92;
    color: white;
    text-align: center;
    padding: 15px 0; 
    font-family: 'Anonymous Pro', monospace;
}


@media only screen and (max-width: 1200px) {
    #typed-text, #typed-text2 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 900px) {
    #typed-text, #typed-text2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 600px) {
    #typed-text, #typed-text2 {
        font-size: 16px;
    }
}
