@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: rgb(255, 250, 239);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-page-container {
    text-align: center;
    width: 100%;
    max-width: 510px;
}

.logo {
    width: 298px;
    height: auto;
    margin-bottom: 34px;
}

.title-image {
    width: 425px;
    height: auto;
    margin-bottom: 51px;
}

.button-container {
    display: flex;
    gap: 26px;
    margin-top: 34px;
}

.button {
    flex: 1;
    padding: 17px 26px;
    border: 4px solid rgb(112, 112, 112);
    border-radius: 9999px;
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-primary {
    background: rgb(182, 214, 187);
    color: rgb(255, 255, 255);
}

.button-secondary {
    background: rgb(182, 214, 187);
    color: rgb(255, 255, 255);
}

.button-secondary:hover {
    background: rgb(160, 200, 165);
    color: rgb(255, 255, 255);
}