@import url('https://fonts.googleapis.com/css2?family=Faster+One&display=swap');

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background-color: #a8d151;

    display: flex;
    flex-direction: column;
    align-items: center;

    min-height: 100vh;
    box-sizing: border-box;
    padding: 40px 20px;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container img {
    width: 60%;
    max-width: 600px;
    height: auto;
    display: block;
}

.content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    min-height: 65px;
    box-sizing: border-box;

    padding: 14px 40px;
    border: 6px solid #2e2365;
    border-radius: 30px;

    color: #2e2365;
    text-decoration: none;

    font-family: "Faster One", cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;

    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #2e2365;
    color: #a8d151;
}

@media (max-width: 600px) {

    body {
        padding: 25px 15px;
    }

    .logo-container img {
        width: 85%;
        max-width: 350px;
    }

    .content {
        margin-top: 40px;
    }

    .links {
        gap: 25px;
    }

    .social-button {
        min-width: 220px;
        min-height: 60px;
        padding: 12px 35px;
        font-size: 1.8rem;
    }
}
