@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    padding: 0;
    margin: 0;
    overflow: auto;
    height: 100%;
    background-image: url(images/bricksbg.jpeg);
    background-color: #383739;
    color: whitesmoke;
    font-size: larger;
    font-family: "MedievalSharp", cursive;
    font-weight: 400;
    font-style: normal;
}

button {
    background-color: transparent;
    border: none;
    color: whitesmoke;
    font-size: larger;
    font-family: "MedievalSharp", cursive;
    font-weight: 400;
    font-style: normal;
    width: 500px;
}

#castle {
    position: fixed;
    background-color: #87CEEB;
    padding: 0;
    margin: 0;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

#title {
    position: fixed;
    top: 385px;
    display: flex;
    justify-content: center;
    background-color: green;
    width: 60vw;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 1;
}

#goldCounter {
    position: fixed;
    top: 450px;
    width: 60vw;
    background-color: slategrey;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Upgrades {
    margin-top: 30px;
    position: fixed;
    top: 600px;
    width: 60vw;
    height: 300px;
    background-color: slategrey;
    display: flex;
    flex-direction: row;
    padding-bottom: 15px;
    padding-top: 30px;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
}

.options {
    background-color: rgb(50, 61, 72);
    padding: 20px;
    border-radius: 20px;
}

#break {
    display: none;
}

#buttons {
    position: absolute;
    padding-left: 63%;
    font-size: medium;
}

.soldiers {
    background-color: rgb(101, 101, 101);
    padding: 20px;
    display: flex;
    margin: 10px;
    border-radius: 20px;
    width: 60%;
    box-shadow: 5px 5px 5px black;
}

.soldiers img {
    background-color: whitesmoke;
    padding: 5px;
    border: 3px solid black;
    height: 100px;
}

@media screen and (max-width: 1000px) {
    #buttons{
        display: flex;
        flex-direction: column;
        align-items: center;
        left: 25%;
        padding-left: 0;
    }

    #castle {
        position: relative;
        background-color: #87CEEB;
        padding: 0;
        margin: 0;
        width: 100vw;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #castle img {
        width: 500px;
    }

    #title {
        position: absolute;
        top: 615px;
        display: flex;
        justify-content: center;
        background-color: green;
        width: 100%;
        margin: 0px;
        padding: 20px;
        z-index: 10;
    }

    #goldCounter {
        position: relative;
        top: 0px;
        width: 100%;
        background-color: slategrey;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #Upgrades {
        position: relative;
        top: 0px;
        width: 97vw;
        background-color: slategrey;
        display: flex;
        flex-direction: row;
        padding: 15px;
        align-items: center;
        justify-content: space-between;
    }

    .options {
        background-color: rgb(50, 61, 72);
        padding: 20px;
        border-radius: 20px;
    }

    #break {
        display: block;
    }

    .soldiers {
        padding: 20px;
        width: 430px;
        
    }

    .soldiers img {
        height: 200px;

    }

    #infos {
        padding-left: 30px;
        display: flex;
        flex-direction: column;
    }
    
}

