body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden; /* This will clip the image to the circular shape */
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will ensure the image covers the area, maintaining aspect ratio */
    pointer-events: none; /* Disables mouse events like dragging */
    -webkit-user-drag: none; /* For Safari */
    user-select: none; /* Forbid text selection */
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* This adds space between the buttons */
}

.button {
    display: block; /* Changed to block to fill the container */
    background-color: #bb86fc;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}

.button:hover {
    background-color: #3700b3;
}
