body {
    background-color: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.title1 {
    font-size: 46px;
    margin-bottom: 40px;
    color: #fC5F50;
    display: contents;
	
}.title2 {
    font-size: 46px;
    margin-bottom: 40px;
	font-style: italic;
    color: #45a049;
    display: contents;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.button {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #fC5F50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.12s ease;
    border-radius: 15px;
    box-shadow: 0 5px 7px 5px #00000050;
}

.button:hover {
    background-color: #45a049;
    transform: scale(1.15);
    box-shadow: 0 0 8px 2px #00880088;
}

.button:active {
    transform: scale(0.95);
}

.button:focus {
    outline: none;
    box-shadow: 0 0 2px 5px #ffffffff;
}

@media (max-width: 1300px) {
    .button-container {
        max-width: 650px;
    }
}

@media (max-width: 650px) {
    .button-container {
        max-width: 460px;
    }
    .button {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .button-container {
        max-width: 220px;
    }
}
