body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: white; 
    overflow: hidden;
    display: flex; 
    align-items: center;
    justify-content: center;
}

html {
    cursor: none;
  }
  #cursor {
    height: 20px;
    width: 20px;
    border-radius: 20px;
    background-color: #E52323;
    border:2px solid #950404; 
    position: absolute;
    z-index: 3;
  }


a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
  }

.header {
width: 100%;
top: 0.5rem;
padding: 0 2rem;
height: 40px;
display: flex;
flex-direction: row;
align-items: flex-start;
position: fixed;
background: black;
z-index: 1;
}

.title {
font-family: Helvetica, sans-serif;
font-style: italic;
text-transform: uppercase;
font-size: 1.9rem;
text-align: center;
color: white;
position: relative;
}


#main {
    text-align: center;
    font-family: Helvetica, sans-serif;
    z-index: 1;
    position: absolute;
   top: 950%;
   left: 50%;
   transform: translate(-50%, -50%);
}

#main h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

#main button {
    font-size: 1.4em;
    font-weight: bold;
    padding: 0.5em 1em;
    border: 2px solid #000;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
}

#main button:hover {
    background-color: #dcdcdc;
}

.shapes-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shape {
    position: absolute;
    animation: float 60s ease-in-out infinite;
}

.triangle {
    width: 75px;
    height: 80px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-radius: 20%;
    background-color: #FFB74A;
}

.circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #E52323;
}


.footer {
width: 100%;
bottom: 0.75rem;
padding: 0 0rem;
height: 40px;
display: flex;
flex-direction: row;
align-items: flex-start;
position: fixed;
background: black;
z-index: 1;
}

.title2 {
font-family: Helvetica, sans-serif;
font-size: 1.9rem;
text-align: center;
font-style: italic;
text-transform: uppercase;
color: white;
position: relative;
}


@media screen and (max-width: 768px) {
    #main h1 {
          font-size: 1.5em;
    }

    #main button {
          font-size: 1em;
    }

    .triangle {
          width: 50px;
          height: 55px;
    }

    .circle {
          width: 10px;
          height: 10px;
    }
}