:root {
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #F2F3F4;
    height: 100vh;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    outline: none;
    border: none;
}

a:hover {
    text-decoration: none;
    outline: none;
    border: none;
}

.main {
    align-content: center;
    justify-content: center;
    display: flex;

    margin: 0 auto;
    height: 40em;
    width: 50%;
}

.container {
    align-content: center;
    justify-content: center;
    display: flex;
    flex-direction: column;

    margin: 6em auto;
    height: 100%;
    width: 80%;
}

.img-container {
    align-content: center;
    justify-content: center;
    display: flex;

    margin: 0 auto 1em auto;
    width: 30%;
}

@media only screen and (max-width: 1024px) {
    .main {
        height: 100%;
        width: 100%;
    }

    .container {
        height: 100%;
        width: 100%;
    }

    .buttons-container {
        height: 100%;
        width: 100%;
    }

    .img-container {
        width: 100%;
    }

    .tree {
        height: 100%;
        width: 100%;
    }
}

.google-container {
    align-items: center;
    justify-content: center;
    display: flex;

    width: 50%;
    margin: 0 auto;
}

.buttonDiv {
    align-self: center;
    justify-self: center;

    margin: 0 auto;
    width: 50%;
}

.tree {
    align-self: center;
    display: flex;

    height: 100%;
    max-width: 100%;
    min-width: 50%;
}

.buttons-container {
    align-content: space-around;
    align-self: center;
    justify-content: space-around;
    justify-self: center;

    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    margin: 0 auto;

    height: 80%;
    max-width: 90%;
    width: 50%;
}

.button {
    background-color: #d2d3d4;
    box-shadow: 2px 2px 10px #939393,
    -2px -2px 10px #939393;
    align-self: center;
    border-radius: 10%;

    width: 7em;
    height: 7em;

    transition: 0.5s ease-out;
}

button:hover,
.button:focus {
    transform: scale(95%);
}

.button > img {
    height: auto;
    width: 80%;
}