
/*
I use virtual height units on both of them (height and width) 
so that the height and width of the borders get smaller 
everytime the height of the browser gets smaller.
*/

html, body {
    margin: 0;
    padding: 0;
    background-color: #404149;
}

h1 {
    font-size: 4vh;
}

h2 {
    font-size: 2.9vh;
}

hr {
    height: 0.2vh;
    width: 70vh;
    color: black;
    background-color: black;
    border: 0;
}

button {
    border: none;
    background-color: transparent;
    font-family: none;
    cursor: pointer;
}

input {
    font-weight: bold;
    font-size: 2.2vh;
    color: black;
}

canvas {
    height: 14.2vh;
    width: 5vh;
    margin-top: -0.1vh;
}

#main {
    background-color: #a2adb1;
	height: 93vh;
	width: 95vh;
    border: 1.1vh solid #a9b0b4;
    border-radius: 1vh;
	margin: auto;
    margin-top: 2vh;
    overflow-y: scroll;
    box-shadow: 1.5vh 1.5vh 1vh;
}

#menus {
    display: flex;
    justify-content: space-around;
    height: 10vh;
    background-color: #a2adb1;
    border: .7vh solid #bbbbbb;
    border-radius: .1vh;
    box-shadow: 1vh 0.9vh 4vh;
}

#welcoming {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#welcoming h2 {
    margin-top: -1vh;
    margin-bottom: -1vh;
}

#game {
    display: flex;
    height: 14vh;
    border: 0.4vh solid black;
    border-radius: 0.7vh;
    margin-top: 0.8vh;
    box-shadow: -1vh 0.2vh 5vh;
}

#picture1, #picture2, #picture3, #picture4, #picture5, #picture6 {
    height: 14.1vh;
    width: 14.1vh;
    border: 0;
    cursor: pointer;
}

#picture1 {
    background-color: white;
    background-image: url('images/star.png');
    background-repeat: no-repeat;
    background-position-y: 0.4vh;
    background-size: 14vh;
}

#picture2 {
    background-color: black;
    background-image: url('images/imaze.png');
    background-repeat: no-repeat;
    background-size: 14vh;
}

#picture3 {
    background-image: url('images/animation.png');
    background-repeat: no-repeat;
    background-size: 14.3vh;
}

#picture4 {
    background-image: url('images/oaxaca.png');
    background-repeat: no-repeat;
    background-size: 18vh;
    background-position-x: -2vh;
    background-position-y: 0.5vh;
}

#picture5 {
    background-image: url('images/pm.png');
    background-repeat: no-repeat;
    background-size: 14vh;
    background-position-x: -0vh;
    background-position-y: 0vh;
}

#picture6 {
    background-image: url('images/fourth.png');
    background-repeat: no-repeat;
    background-size: 14vh;
    background-position-x: -0vh;
    background-position-y: 0vh;
}

#game h1 {
    margin-top: -0.5vh;
    margin-left: 3vh;
}

#centeringText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 63vh;
}

#description {
    font-size: 3.5vh;
}

#game p {
    display: inline;
    width: 55vh;
    margin-top: -1.5vh;
    font-size: 2vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}