* {
    margin: 0;
}

body {
    background-image: url("../img/background.png");
    background-color: #cccccc;
    margin: 0 auto;
    max-width: 1500px;
    font-family: 'Arimo', sans-serif;
}

p {
    margin-left: auto;
    margin-right: auto;
    font-family: 'PT Sans Narrow', sans-serif;
}

.img2 {
    width: 75%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

nav {
    text-align: center;
}

.navbar {
    margin: 0;
    font-size: 20px;
}

.container-fluid {
    background-color: red;
}

.navbar-static-top {
    border-bottom-width: 0px
}

header {
    text-align: center;
    background-color: DeepSkyBlue;
    border: 1px solid black;
}

.article {
    text-align: center;
}

.upfooter {
    text-align: center;
    display: block;
}

footer {
    text-align: center;
    margin-top: 10px;
    display: block;
}

.font {
    text-align: center;
    font-size: 25px;
}

h1 {
    font-size: 40px;
    margin: 5px;
}

.container-fluid {
    background-color: DeepSkyBlue;
}

table,
th,
td {
    color: blue;
    border-bottom: 1px solid #ddd;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    width: 500px;
    height: 100px;
    text-align: center;
}

.headtable {
    font-size: 23px;
    text-align: center;
}

tr:nth-child(even) {
    background-color: rgba(77, 121, 255, 0.1);
}

table,
th,
td,
tr {
    opacity: 0.5;
    filter: alpha(opacity=50);
    /* For IE8 and earlier */
}

table,
th,
td,
tr:hover {
    opacity: 1.0;
    filter: alpha(opacity=100);
    /* For IE8 and earlier */
}

.carousel-inner .item img {
    margin: 0 auto;
    max-height: 400px;
}

#myCarousel {
    max-width: 600px;
    margin: 0 auto;
}

#myCarousel {
    background-color: black;
}

.meimg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
    -webkit-transition: -webkit-transform;
    transition: transform 3s ease-in-out;
}

.img:hover {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(1440deg);
}

#slide1:checked~.carousel-items {
    left: 0;
}

#slide1:checked~.carousel-labels .carousel-label:nth-child(1) label {
    background-color: black;
}

#slide2:checked~.carousel-items {
    left: -100%;
}

#slide2:checked~.carousel-labels .carousel-label:nth-child(2) label {
    background-color: black;
}

#slide3:checked~.carousel-items {
    left: -200%;
}

#slide3:checked~.carousel-labels .carousel-label:nth-child(3) label {
    background-color: black;
}

.button {
    border-radius: 50px;
    background-color: DeepSkyBlue;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: auto;
    height: 100px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button span:after {
    content: '»';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -50px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}

.button2 {
    border-radius: 50px;
    background-color: DeepSkyBlue;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px;
    width: auto;
    height: 100px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button2 span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.button2 span:before {
    content: '«';
    position: absolute;
    opacity: 0;
    top: 0;
    left: -50px;
    transition: 0.5s;
}

.button2:hover span {
    padding-left: 25px;
}

.button2:hover span:before {
    opacity: 1;
    left: 0;
}
