* {
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        url("https://preview.redd.it/frutiger-aero-aesthetics-my-favorite-instead-of-minimalist-v0-6oaviyfdgmbe1.jpeg?width=640&crop=smart&auto=webp&s=5498d53853619b81a786c99f40728150f65e0f9f");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: right top;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #0b8507;
    width: 100%;
}

#main {
    margin: 30px;
    justify-content: center;
    background-color: rgba(4, 84, 22, 0.32);
    padding: 20px;
    border-radius: 30px;
}

h1 {
    font-size: 5vw;
}

p {
    font-size: 20px;
}

#link {
    font-size: 15px;
    padding: 5px;
    margin: 5px;
    margin-top: 20px;
    cursor: default;
}

.faimage {
    width: 80vw;
    margin: 10px;
}

.verticalgroup {
    display: flex;
    justify-content: center; /* centraliza o grupo na tela */
    gap: 10px;               /* espaço entre as imagens */
}

.verticalgroup img {
    height: 50vw;
    width: auto;
}

.frutigergallery{
    display: flex;              /* usa flexbox */
    flex-direction: column;     /* empilha as imagens verticalmente */
    align-items: center;        /* centraliza horizontalmente */
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    body {
        background-size: 270vw;
        background-position:top;
        background-attachment: fixed;
    }
    
    .verticalgroup {
        flex-direction: column;    /* empilha verticalmente em telas menores */
        align-items: center;       /* centraliza as imagens */
    }
    .verticalgroup img {
        height: auto;              /* altura automática no celular */
        width: 80vw;               /* ajusta a largura à tela */
    }
    
    h1 {
        font-size: 10vw;
    }
}

/*Botao*/

/* Authentic Frutiger Aero Button CSS */
.frutiger-aero-button {
    text-decoration: none;
  /* OKLCH Color System for accurate colors */
  --hue: 158;
  --sat: 0.36;
  --glow-intensity: 0.75;
  
  /* Color Variables */
  --fg: oklch(15% calc(var(--sat) * 0.5) var(--hue));
  --bg: oklch(75% var(--sat) var(--hue) / 0.8);
  --bg-dark: oklch(45% var(--sat) var(--hue) / 0.75);
  --bottom-glow: radial-gradient(
    farthest-corner at bottom center,
    rgba(255, 255, 255, var(--glow-intensity)),
    transparent
  );
  
  /* Base Styling */
  background-color: var(--bg);
  background: 
    var(--bottom-glow),
    linear-gradient(to bottom, var(--bg-dark), var(--bg));
  
  border: 1px solid var(--bg);
  border-radius: 9999px;
  
  /* Shadows and Effects */
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
  
  /* Typography */
  color: var(--fg);
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 0.5em rgba(0, 0, 0, 0.2);
  
  /* Layout */
  cursor: pointer;
  position: relative;
  transition: all 300ms ease;
  
  /* Prevent text selection */
  user-select: none;
  -webkit-user-select: none;
}

/* Top Highlight Effect */
.frutiger-aero-button::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 0.75em;
  width: calc(100% - 1.5em);
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: inherit;
  transition: background 400ms ease;
  pointer-events: none;
}

/* Hover State */
.frutiger-aero-button:hover,
.frutiger-aero-button:focus {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

/* Active State */
.frutiger-aero-button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(1px);
}

/* Size Variations */
.frutiger-aero-button.small {
  padding: 0.5em 1.5em;
  font-size: 0.875rem;
}