* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: #ffffff;
    color: #000000;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 20vh; 
    padding-bottom: 50px;
    min-height: 100vh;

    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE/Edge */
    user-select: none;         /* Standard */
}

#logo {
    display: block;
    width: 150px;
    height: auto;
    
    margin-left: auto;
    margin-right: auto;
    
    margin-bottom: 20px; 
    
    pointer-events: none;
}

h1 {
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px; 
}

p {
    font-size: 12px; 
    text-align: center;
    color: #000;
}

@media (max-width: 600px) {
    body {
        padding-left: 20px;
        padding-right: 20px;
    }
}