* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

/* body{
  background-color: #333;
} */

header {
  text-align: center;
}

main {
  min-height: 500px;
  text-align: center;
}

header>h1 {
  margin: 2px;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
}

h3 {
  font-size: 20px;
}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  display: flex;
  justify-content: space-evenly;
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  width: 100%;
  max-height: 60px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #038857;
  color: white;
}

* {
  box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

table,
tr,
th,
td {
  border: 1px solid black;
  font-size: small;
}

th,
td {
  width: 10000px;
  height: 30px;
  text-align: center;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
  font-size: 17px;
  width: 100%;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
  width: 100%;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: #f2f2f2;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  /* Important for vertical align on mobile phones */
  margin: 0;
  /* Important for vertical align on mobile phones */
  width: 100%;
}

/* Add a red background color to navbar links on hover */
.navbar a:hover,
.dropdown:hover .dropbtn {
  background-color: #038857;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #f2f2f2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.btn {
  width: 100%;
}

footer {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: baseline;
  min-height: 200px;
  margin: 4px;
}

/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5px auto;
  /* 15% from the top and centered */
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  /* Position it in the top right corner outside of the modal */
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

ul {
  list-style: none;
}

.omossp {
  font-size: 1.3rem;
  max-width: 1000px;
  margin: auto;
}

.info {
  font-size: 20px;
}

.sportimg {
  background-repeat: no-repeat;
  background-image: url(../img/img34.jpg);
  width: 350px;
  height: 175px;
  margin: auto;
}

.imgcontainer {
  background-repeat: no-repeat;
  background-image: url(../img/loginimg2.jpg);
  width: 249px;
  height: 163px;
  margin: auto;
}

div>form>div>fieldset>textarea {
  max-height: 20px;
}

@-webkit-keyframes animatezoom {
  from {
    -webkit-transform: scale(0)
  }

  to {
    -webkit-transform: scale(1)
  }
}

@keyframes animatezoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

/* surfplatta */
@media screen and (min-width: 601px) {

  table,
  tr,
  th,
  td {
    font-size: medium;
  }

  .modal-content {
    width: 60%;
  }

  .imgcontainer {
    background-repeat: no-repeat;
    background-image: url(../img/loginimg3.jpg);
    width: 360px;
    height: 236px;
    margin: auto;
  }

  .sportimg {
    background-repeat: no-repeat;
    background-image: url(../img/img33.jpg);
    width: 550px;
    height: 275px;
    margin: auto;
  }

}

@media screen and (min-width: 900px) {
  .sportimg {
    background-repeat: no-repeat;
    background-image: url(../img/img32.jpg);
    width: 800px;
    height: 400px;
    margin: auto;
  }
}

/* dator */
@media screen and (min-width: 1025px) {

  table,
  tr,
  th,
  td {
    font-size: large;
  }

  .sportimg {
    background-repeat: no-repeat;
    background-image: url(../img/img3.jpg);
    width: 900px;
    height: 450px;
    margin: auto;
  }
}