body {
    background-image: url(bg/gold.gif);
}

p {
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-left: 20px;
}

h1, h2 {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#main {
    display: block;
    margin: auto;
    background-color:rgb(211, 177, 65);
    width: 40%;
    padding: 15px;
    border-style: outset;
    border-width: 6px;
    border-color: rgb(231, 206, 122);
}

#buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#buttons > button {
    width: 40%;
    height: 50px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color:rgba(255, 252, 50, 0.582);
    border: 0;
}

#buttons > button:hover {
    background-color:rgba(255, 252, 50, 0.884);
}

#buttons > button:active {
    background-color:rgb(172, 169, 19);
}

#buttons-mobile {
    width: 100%;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: none;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#buttons-mobile > button {
    width: 48%;
    height: 30px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color:rgba(255, 252, 50, 0.582);
    border: 0;
}

#buttons-mobile > button:hover {
    background-color:rgba(255, 252, 50, 0.884);
}

#buttons-mobile > button:active {
    background-color:rgb(172, 169, 19);
}

#intro {
    text-align: center;
    padding-left: 0 !important;
    width: 90%;
    display: block;
    margin: auto;
}

.list {
    display: block;
    margin: auto;
    width: 80%;
}

#logo {
    display: block;
    margin: auto;
    max-width: 100%;
}

#others > .list > img {
    max-width: 200px;
}

@media only screen and (max-width: 1200px) {
    #main {
        width: 60%;
    }
}

@media only screen and (max-width: 900px) {
    #main {
        width: 80%;
    }
    #intro {
        width: 100%;
        font-size: 14px;
    }
    #buttons {
        display: none;
    }
    #buttons-mobile {
        display: flex;
    }
    #others > .list > img {
        max-width: 48%;
    }
}