
body {
    background-color: black;
}

h1 {
    color: #ff429e;
    font-family: impact, serif;
    font-weight: lighter;
    font-size: 200px;
    top: 0px;
    margin-bottom: 0px;

}
h2 {
    color: #ff429e;
    font-family: impact, serif;
    font-weight: bolder;
    font-size: 100px;

    margin-top: 8px;
    margin-left: 50%;
    float: top;
    position: sticky; 
    top:0px;
    z-index: 1000;   
}
p {
    color: rgb(129, 129, 129);
    font-family: "Archivo Black", sans-serif;
    font-size: 28px;
}

.image-row {
    display: flex;          /* Use Flexbox */
    justify-content: space-between; /* Evenly space items */
    align-items: center;   /* Center items vertically */
}

.image-row img {
    max-width: 100%;       /* Make images responsive */
    height: auto;          /* Maintain aspect ratio */
    width: 310px;          /* Set a fixed width for images */
    margin-left: -50px;
}

.image-container {
    display: flex;              /* Use Flexbox */
    justify-content: center;    /* Center horizontally */
    align-items: center;        /* Center vertically */
    height: 100vh;             /* Full viewport height for vertical centering */
}
/* femka billedet: */
.image-container img {
    max-width: 200%;           /* Responsive image */
    height: auto;              /* Maintain aspect ratio */
    margin-top: -100px;
    width: 1000px;
}
.image-column {
    display: flex;             /* Use Flexbox */
    flex-direction: column;    /* Stack items vertically */
    align-items: center;       /* Center images horizontally */
}

.image-column img {
    max-width: 100%;           /* Make images responsive */
    height: auto;              /* Maintain aspect ratio */
    margin-bottom: 100px;       /* Space between images */
}

a:link{
    color: rgb(219, 219, 219);
}
a:visited{
    color: grey;
}
a:hover{
    color: #ff429e;
}
a:active{
    color: rgb(255, 159, 231);
}
button:hover{
    background-color: #ff429e;
}
button:active{
    background-color: rgb(255, 159, 231);
}

.fixed-image {
    position: fixed;
    bottom: -5px;
    right: 10px;
    z-index: 2000;
    opacity: 0;               /* Gør elementet usynligt */
    transition: opacity 0.5s; /* Glidende overgang for visning */
}

.fixed-image.visible {
    opacity: 1;               /* Synliggør billedet */
}

.fixed-image img {
    max-width: 400px;      /* Adjust the image size as needed */
    max-height: 600px;
    object-fit: contain;   /* Keeps image aspect ratio */
}

 /* Body and html full height */
html, body {
    height: 100%;
    margin: 0;
  }
  
  /* Centered text styling */
  .centered-text {
    position: relative;         /* Fixes the element relative to the viewport */
    top: 50%;                /* Align to the vertical center */
    left: 50%;               /* Align to the horizontal center */
    transform: translate(-50%, -50%); /* Centers the element */
    padding: 10px;
    border-radius: 5px;
  }
  * Parent container styles */
.parent {
    position: relative;    /* This makes the parent a reference point for the absolute box */
    width: 500px;         /* Width of the parent container */
    height: 500px;        /* Height of the parent container */
    border: 2px solid #333; /* Border to visualize the parent */
    overflow: auto;       /* Allow scrolling if content overflows */
    padding: 20px;        /* Padding inside the parent */
}

/* Absolute box styles */
.absolute-box {
    position: absolute;    /* This positions the box relative to the parent */
    top: 100px;            /* 20 pixels from the top of the parent */
    left: 190px;           /* 20 pixels from the left of the parent */
    width: 1480px;         /* Width of the box */
    padding: 10px;        /* Padding inside the box */
    border-radius: 5px;   /* Rounded corners */
}

/* Content styles for scrolling */
.content {
    margin-top: 100px;    /* Adding margin to push the content down */

}

.scroll-container {
    overflow: hidden;            /* Hide overflow to contain the scrolling */
    width: 1500px;                /* Full width of the viewport */
}

.scrolling-images {
    display: flex;               /* Align images in a row */
    gap: 20px;                   /* Space between images */
    animation: scroll 20s linear infinite; /* Smooth, continuous scroll */
}

.scrolling-images img {
    width: 60px;                /* Set image width */
    height: 60px;                /* Maintain aspect ratio */
    border-radius: 8px;          /* Optional rounded corners */
}

/* Keyframes for the continuous scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Default styles for desktop */
body {
  font-size: 18px;
}

/* Tablet styles */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* Phone styles */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}
.container {
  width: 90%; /* Instead of a fixed width */
  max-width: 1200px;
}

img {
  max-width: 100%;
  height: auto;
}

