html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    backdrop-filter: blur(8px);
    min-height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
}

.title {
    font-family: 'Cabin Sketch', cursive;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        -4px -4px 0 #ffffff,
        4px -4px 0 #fff,
        -4px 4px 0 #fff,
        4px 4px 0 #fff;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.button.large { width: 300px; }
.button.small { width: 200px; }

.button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-button img {
    width: 24px;
    height: 24px;
}

.social-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
