@charset "UTF-8";
/* CSS Document */
body {
  font-family: "Courier New", monospace;
  margin: 40px;
  line-height: 1.6;
}

nav {
  background:#f0feff;
  padding: 10px;
  margin-bottom: 20px;
}

nav a {
  text-decoration: none;
  margin-right: 10px;
  color: #a7e8fc;
}

h1 {
  color: #333;
  white-space: nowrap;
}

h2 {
  white-space: nowrap
}

h3 {
  white-space: nowrap
}

img {
  max-width: 100%;
  margin: 10px;
  white-space: nowrap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: white;
}

.container h2 {
    color: gold;
    font-size: 32px;
    padding: 15px 0 20px 0;
    text-align: center;
    margin-left: 0%;
}

.container h3 {
    margin: 0%;
    font-size: 20px;
    color: #ffd591;
    text-align: center;
    margin-bottom: 20px;
}

.price-row {
    width: 81%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.price-col {
    transition: box-shadow .5s;
    transition: transform;
    background: #666;
    padding: 10% 10%;
    border-radius: 10px;
    color: #ffd591;
    text-align: center;
}


.price-col:hover {
    box-shadow: 0 0 20px rgba(9, 157, 194, 0.2);
    transform: scale(1.04);
}

.price-col p {
    font-size: 18px;
}

.price-col h3 {
    color: whitesmoke;
    font-size: 22px;
    margin: 15px 0 20px;
    font-weight: 500;
}

.price-col h3 span {
    font-size: 25px;
}

.price-col ul {
    text-align: left;
    margin: 10px 0;
    color: white;
    list-style: none;
}

.price-col ul li {
    border-bottom: 2px solid #feffff;
    font-size: 20px;
    color: white;
    padding: 8px;
    text-align: left;
}

.price-col button {
    background-color: white;
    border: 1px solid white;
    border-radius: 5px;
    margin: 20px 0 0 0;
    color: black;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

.price-col button:hover {
    background: black;
    color: white;
}

#best {
    background: #444;
}

p {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: -10px;
}

#prem {
    color: gold;
    text-shadow: 1px 1px gold;
}