body{
    /* Sets the default text color */
    color: gray;
}

img {
    border-radius: 15px;
}

.shadow{
	table : 4px 4px 14px grey;
	border-radius: 15px;
	box-shadow: 2px 2px 14px grey;
	}

.noshadowtable{
	table : 4px 4px 14px grey;
	border-radius: 15px;
	//box-shadow: 2px 2px 14px grey;
	}



.main-heading {
    /* Sets main-heading text color */
    color: white;

    font-size: 42px;
    font-weight: bold;

    /* Puts the test in the center of the div*/
    text-align: center;

    /* Puts the div in the center of the page */
    margin: auto;

    width: 70%;
    background-color: blue;

    /* Adds 10px above the text */
    padding-top: 10px;

    /* Adds 10px below the text */
    padding-bottom: 10px;

    border-radius: 50px;
    box-shadow: 4px 4px 14px crimson;
}

.shadow-text{
    /* Adds 50px above the text */
    padding: 50px 50px;
    font-size: 42px;
    color: darkcyan;
    text-align: center;
    text-shadow: 2px 2px 4px #000000;
}

.button{
    background-color: darkcyan;
    border: none;
    color: white;

    /* Puts padding around the text 15 32 */
    padding: 5px 10px;

    /* Puts a 20px left margin on the button to space*/
    margin-left: 5px;

    /* Puts 50px bellow the buttons */
    margin-bottom: 10px;

    text-align: center;
    font-size: 12px;
    cursor: pointer;

    border-radius: 10px;
    box-shadow: 2px 2px 14px grey;

    /* Removes the border when you click the button */
    border: none;
    outline:none;
}


/* When hovering over the button */
.button:hover{
    background-color: blue;
    box-shadow: 4px 4px 14px black;
}

/* When clicking the button */
.button:active {
    background-color: green;
    box-shadow: 4px 4px 10px black;
    transform: translateY(4px);
    color: white;
}


.SQbutton{
    background-color: darkcyan;
    border: none;
    color: white;

    /* Puts padding around the text 15 32 */
    padding: 5px 10px;

    /* Puts a 20px left margin on the button to space*/
    margin-left: 5px;

    /* Puts 50px bellow the buttons */
    margin-bottom: 10px;

    text-align: center;
    font-size: 12px;
    cursor: pointer;

 //   border-radius: 10px;
 //   box-shadow: 2px 2px 14px grey;

    /* Removes the border when you click the button */
    border: none;
    outline:none;
}

/* When hovering over the button */
.SQbutton:hover{
    background-color: blue;
//    box-shadow: 4px 4px 14px black;
}

/* When clicking the button */
.SQbutton:active {
    background-color: green;
    //box-shadow: 4px 4px 10px black;
    transform: translateY(4px);
    color: white;
}

/* picture defaults */
.shadow{
    height: auto;
    box-shadow: 4px 4px 14px grey;
}

.small-picture{
     width: 10%;
     border-radius: 20px;
}

.medium-picture{
    width: 20%;
     border-radius: 30px;
}

.large-picture{
    width: 30%;
    border-radius: 50px;
}

.round-picture{
    /* This only works on square pictures */
    border-radius: 50%;
}

.make-the-picture-square{
    height: 200px;
    width: 200px;
}

/* This styles all inputs of type text without using class=... */
input[type=text] {
    padding: 12px 20px;
    margin: 20px 40px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 4px 4px 14px grey;
    overflow: hidden;
}

input[type=text]:hover {
    border-color: red;
}

input[type=text]:focus {
    background-color: lightblue;
    outline:none;
}