* {
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
}



.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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 */
}

.modal-content h1 {
    font-size: 20px;
    color: white;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 16px;
    color: white;
    font-weight: 200;
    text-align: center;
    margin-bottom: 10px;
}

/* Modal Content */
.modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid white;
  width: 80%;
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.shop-base button {
    background-color: rgba(0, 88, 7, 0.6);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'VT323', monospace;
    width: 60%;
}





.homepage-base {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-image: url('images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-color: #222;
    font-family: 'VT323', monospace;
}

.logobase {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.logobase a {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logobase img {
    width: 50%;
}

.welcomebase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.5);
}

.welcomebase h1 {
    font-size: 32px;
}

.welcomebase h2 {
    font-size: 20px;
}

.homepage-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    gap: 30px;
    padding-bottom: 20px;
}

.btn img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.btns {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.btn {
    display: flex;
    justify-content: center;
    width: fit-content;
}

.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.services {
    display: flex;
    justify-content: center;
}

.services img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.services a {
    display: flex;
    justify-content: center;
    width: 100%;
}

.servicesdesc {
    display: none;
}

/* services */

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: 'VT323', monospace;
}

.header h1 {
    font-size: 36px;
    margin: 20px 0;
}

.shop-base {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.shop-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 88, 7, 0.6);
    border: 2px solid white;
    padding: 10px;
    border-radius: 10px;
    width: 60%;
}

.shop-item h1 {
    font-size: 80px;
    margin-bottom: 10px;
    color: white;
}

.shop-item h2 {
    font-size: 30px;
    padding: 2px;
    font-weight: 300;
    color: white;
}

.shop-item h3 {
    font-size: 24px;
    padding: 2px;
    font-weight: 200;
    color: white;align-self: flex-start;
}

.shop-item h4 {
    font-size: 20px;
    padding: 2px;
    font-weight: 100;
    color: white;align-self: flex-start;
}

.spacer {
    width: 90%;
    height: 2px;
    background-color: white;
}

@media (min-width: 768px) {
    .btns {
        flex-direction: row;
    }

    .btn img{
        width: 80%;
    }

    .welcomebase h1 {
        font-size: 48px;
    }

    .welcomebase h2 {
        font-size: 28px;
    }

    .services {
        display: none;
    }

    .servicesdesc{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .servicesdesc img {
        width: 50%;
    }

    .servicesdesc a {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    /* services */


    .shop-base {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 70%;
    }

    .shop-item {
        width: 25vh;
        height: 40vh;
        justify-content: flex-start;
    }


    .modal-content {
      width: 40%;
    }

    .header h1 {
        font-size: 48px;
    }

    .header {
        margin-bottom: 40px;
    }

    .header h2{
        font-size: 24px;
    }

}