




main{
    height: 100vh;
    width: 100%;
    display: grid;
    background-color: black;
    /* display: flex; */
}
main section, main figure{
    grid-area: 1/1/2/2;
    overflow: hidden;
}
main section{
    z-index: 1;
    /* margin-top: 30px; */
}
img{
    pointer-events: none;
}

.content{
    display: flex;
    /* align-items: center; */
    flex-flow: column;
    justify-content: center;
    margin: 40px;
}

.heximg{
    transition: .3s;

    display: grid;
    margin-right: 10px;
    width: 180px;
    /* border: 4px white solid; */
    height: 225px;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
}
.heximg:hover{
    transition: .3s;
    transform: translateY(5px);
}
.heximg img, .heximg a{
    grid-area: 1/1/2/2;
    color: black;
    font-weight: bold;
    text-align: center;
    align-self: center;
}
.heximg img{
    min-height: 100%;
    min-width: 100%;
}
.heximg a{
    backdrop-filter: blur(30px);
    background-color: rgba(0, 0, 0, 0.105);
    width: 50%;
    align-self: center;
    justify-self: center;
    padding: 10px;
    border-radius: 90px;
    color: white;
}

.flex{
    display: flex;
    margin: 10px 0 10px 0;
    overflow: visible
}
main figure img{
    min-height: 150%;
    min-width: 100%;
    margin-left: -50%;
    margin-top: -10%;
    z-index: -1;
    opacity: .15;
    /* transform: rotate(10deg); */
}

#Home{
    align-items: center;
}#Home h1{
    margin-bottom: 20px;
}#Home h2{
    margin-bottom: 30px;
}

#Phase{
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: 766px;
    align-self: center;
    justify-self: center;
    gap: 20px;
}#Phase section{
    width: 65%;
}#Phase .heximg{
    width: 25%;
}

a, p, h1, h2, h3, button{
    color: white;
    font-size: 19px;
    font-family: Arial, Helvetica, sans-serif;
}

h1{
    font-size: 50px;
}
h2{
    font-size: 31px;
}
a{
    /* text-decoration: underline; */
    transition: .2s;
    text-decoration: none;
    font-weight: bold;
}a:hover{
    transition: .2s;
    font-size: 25px;
    /* border-bottom: 3px white solid; */
}

#phasechangegraph{
    width: 300px;
    /* background-color: rgb(114, 114, 114); */
    padding: 5px;
}

nav{
    height: 60px;
    background-color: rgba(0, 0, 0, 0.725);
    backdrop-filter: blur(5px);
    margin-bottom: -60px;
    display: flex;
    position: sticky;
    top: 0;
    justify-content: space-between;
    align-items: center;
}

nav section a{
    margin-right: 30px;
}

footer{
    background-color: black;
    padding: 20px;
    text-align: center;
}

footer section{
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;

}
footer section a{
    font-size: 16px;
}


nav a img{
    height: 30px;
    margin-left: 30px;
}
