:root {
    --primary: #E40981;
    --bg1: #f9f9f9;    
    --text1: #2E2E2E;
    --text2: #ADADAD;
}

body {
    margin: 0;
	padding: 0;
    height: 100vh;
    background-color: var(--bg1);
    font-family: 'Noto Sans', sans-serif;
}

.banner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
}

h1 {
    margin-top: 60px;
    text-align: center;
}

h3 {
    margin: 0;
    font-size: 12pt;
    font-weight: 300;
    text-align: center;
    color: var(--text2);
}

#grid-container {
    margin: 50px 20% 0 20%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.btn {
    align-items: center;
    text-align: center;
    
}

.btn > a {
    display: block;
    position: relative;
    padding: 20px;
    border-radius: 60px;
    background-color: white;
    font-size: 12pt;
    color: var(--text1);
    text-decoration: none;
    box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
    transition: ease-in-out 400ms;
}

.btn > a:hover {
    background-color: rgba(228, 9, 129, 1);
    
    box-shadow: rgba(72, 72, 72, 0.2) 0px 2px 10px 1px;
    transition: ease-in-out 250ms;
    
}

.btn-text {
    display: inline-block;
    transition: all 0.25s ease-in-out; /* Add transition to the text */
}
.btn > a:hover .btn-text {
    margin-left: -14px; /* On hover, move the text a bit to the left */
    padding-right: 14px; /* Add padding to increase the gap between icon and text */
    color: white;
}

.btn > a .icon {
    position: absolute;
    top: 37%;
    font-size: 16px;
    line-height: 1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.btn > a:hover .icon {
    visibility: visible;
    opacity: 1;
    color: #FFBDE1;
    transition: all 0.25s ease-in-out;
}

footer {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 8pt;
    color: var(--text2);
}
#hera-link {
    display: inline;
    text-decoration: none;
    color: var(--text1);
}

@media only screen and (max-width: 1000px){
    .banner {
        width: 100px;
    }
    h1 {
        margin-top: 10px;
    }
    .btn > a {
        padding: 15px;
    }
    #grid-container {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}