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

body {
    font-family: "Anybody", Arial, sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* height: 100%; */
    flex-direction: column;
    display: flex;
    line-height: 2; /* Adjust the value to increase or decrease the spacing */
}

.browser-window {
    background-color: white;
    border: 4px solid black;
    max-width: 100%;
    margin-top: 50px;
}
.browser-window2 {
    position: fixed;
    top: 200px;
    left: 80px;
    background-color: white;
    border: 4px solid black;
    max-width: 100%;
    margin-top: 50px;
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 8px;
    background-color: grey;
    border-bottom: 3px solid black;
}

.browser-buttons {
    display: flex;
    align-items: center;
}

.browser-button {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border-radius: 50%;
    border: 3px solid black
}

.browser-button.blue {
    background-color: red;
}

.browser-button.green {
    background-color: white;
}

.browser-button.yellow {
    background-color: green;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.logo img {
    width: 275px;
    margin-bottom: 40px;
}

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

.button {
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 18px;
    border: 3px solid black;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 5px;
}

.button:hover {
    background-color: black;
    color: white;
}

.panda {
    position: fixed;
    top: -75px;
    right: -75px;
    transform: rotate(225deg);
}

.panda img {
    width: 250px;
}

/* Media query for mobile devices  */
@media screen and (max-width: 768px) {
    .container {
        padding: 30px;
    }

    .browser-window {
        margin: 15px;
        margin-top: 100px;
    }

    .logo img {
        width: 125px;
    }

    .slogan {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .button {
        font-size: 16px;
        padding: 8 px 16px;
        margin: 5px;
    }

    .panda img {
        width: 200px;
    }
}