* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    background-color: #22242a;
}

p {
    font-family: "SUSE", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #CCCEF5;
    font-size: 36px;
}

.main-div {
    
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;    /* Centraliza verticalmente */
    height: 100vh;
}

.content {
    width: fit-content;
    text-align: center;
}

img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}