@import url('https://fonts.googleapis.com/css2?family=Fruktur:ital@0;1&display=swap');

body {
    background-color: black; 
    font-family: Verdana, Arial, sans-serif; 
    font-size: 1em;
    color: white;
    margin: 0; 
    padding: 0; 
}

h1 {
    font-size: 3.5em;
    color: #e06606; 
    font-family: 'Matcha Bubbles Outline', 'Fruktur', sans-serif; 
    src: url(Matcha\ Bubbles\ Outline.ttf) format('truetype'); 
    text-align: center; 
    margin-top: 2px; 
    margin-bottom: 20px; 
}
h2 {
    font-size: 2.5em;
    color: #e06606; 
    font-family: 'Matcha Bubbles Outline', 'Fruktur', sans-serif;
    src: url(Matcha\ Bubbles\ Outline.ttf) format('truetype'); 
    margin-top: 2px; 
    margin-bottom: 20px; 
}

a {
    color: #e06606;
    text-decoration: none; 
}

nav {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav a:hover {
    font-weight: 900;
}

footer {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: bottom;
}

footer svg {
    fill:#e06606;
}

.contact a {
    padding-right: 10px;
}

.container1 {
    width: 60%; 
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
}

.container2 {
    width: 60%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.container1-2 {
    width: 40%; 
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
}

.container4 {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
    padding: 10px;
    border-radius: 5px;
}

  .menu {
    color: #e06606;
    text-align: center; 
    font-size: 20px; 
    float: top; 
    position: static;

    a {
        color: #e06606;
        text-decoration: none; 
        padding-right: 15px;
    }
}

.img-responsive {
    width: 95%; 
    height: auto; 
    object-fit: scale-down;
    padding: 10px; 
    position: relative; 
}

.img-wrap {
    width: 50%; 
    height: auto; 
    object-fit: scale-down;
    padding: 10px; 
    float: left;
    margin-right: 20px; 
}

.img-text {
    position: absolute;
    top: 10%;
    left: 3%;
    color: e06606; 
    font-size: calc(2vw + 2vh);
    font-family: 'Matcha Bubbles', 'Fruktur', sans-serif;
    src: url(Matcha\ Bubbles.ttf) format('truetype');
}

/* Calculators */
.calculator {
    max-width: 400px;
    margin: auto;
    background: black;
    color: #e06606;
}

label {
    margin: 0px 0;
    display: block;
}

button {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    background-color: #e06606;
    color: black;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width:1079px) {
    .container1, .container2 {
        grid-template-columns: 1fr; 
        width: 80%;
    }
    .img-wrap {
        width: 100%; 
        float: none; 
        margin-right: 0; 
    }
    .img-text {
    position: inherit;
    color: e06606; 
    font-size: calc(2vw + 2vh);
    font-family: 'Matcha Bubbles', 'Fruktur', sans-serif;
    src: url(Matcha\ Bubbles.ttf) format('truetype');
    }
    h1 {
        font-size: calc(3vw + 3vh);
        max-width: fit-content;
    }
    h2 {
        font-size: calc(2.5vw + 2.5vh);
    }
    .menu a {
        padding-right: 5px;
        font-size: 0.95em;
    }
    .contact svg {
        max-height: 25px;
        max-width: 25px;
    }
    .contact a {
        padding-right: 5px;
    }
    .calculator {
        padding-left: 5px;
        padding-right: 5px;
    }
}