* {
    box-sizing: border-box;
}

.title {
    font-family: 'Pixel', Arial, serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    font-weight: normal;
    margin-top: 0;
    color: rgba(250, 235, 215, 0.8);
}

body {
    min-height: 100vh;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    background-image: url('https://valchive.neocities.org/img/flores.jpg');
    background-size: 50% auto;
    background-repeat: repeat;
    overflow-x: hidden;
}

@font-face {
    font-family: Pixel;
    src: url("https://files.catbox.moe/x94afg.ttf");
}

@font-face {
    font-family: mademoiselle;
    src: url("https://files.catbox.moe/unz1d8.ttf");
}

.container {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 800px) 1fr;
    grid-template-rows: auto 1fr auto;
    grid-auto-flow: row;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
}

.language-switcher {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            gap: 5px;
        }
        
        .language-button {
            background: none;
            border: 1px solid #8B4513;
            color: #5D4037;
            padding: 5px 10px;
            cursor: pointer;
            font-family: inherit;
            font-size: 0.9rem;
        }
        
        .language-button:hover {
            background: rgba(139, 69, 19, 0.1);
        }
        
        .language-button.active {
            background: #8B4513;
            color: #fff;
        }
        
        .enter-button {
            align-self: center;
            display: inline-block;
            margin-top: 30px;
            padding: 10px 30px;
            background: #8B4513;
            color: #fff;
            border: 1px solid #5D4037;
            text-decoration: none;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .enter-button:hover {
            background: #A0522D;
        }

.Header {
    grid-column: 1 / -1;
    grid-row: 1;
}

.Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    grid-column: 2;
    grid-row: 2;
    margin-top: 200px;
    margin-bottom: 200px;
    padding: 20px 30px;
    background-color: #3d2200;
    color: antiquewhite;
    border: 20px solid #ffebd6;
}

.Profile {
    grid-column: 2;
    grid-row: 1;
    transform: translateY(-100px) translateX(80px);
}

.Footer {
    grid-column: 1 / -1;
    grid-row: 3;
}