@font-face {
    font-family: opensans;
    src: url("../fonts/opensans.ttf");
}

html {
    background: linear-gradient(to bottom right, 
    #a53860 0%, 
    #8B5978 15%, 
    #717A8F 30%, 
    #589CA7 45%,
    #3EBDBE 60%,
    #24DED6 85%,
    #0affed 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: opensans;
    height: 100%;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.content {
    text-align: center;
}

h1 {
    color: #fff5e1;
    font-size: 2.5em;
    margin: 0;
}

h2 {
    text-decoration: none;
    color: #fff5e1;
    font-size: 1.5em;
    margin: 0;
}

pHL {
    color: #f0c674;
    text-decoration: none;
}

.centerFix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #fff5e1;
    transition: background-color 0.3s, color 0.3s;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    text-align: center;
}

.box a {
    color: #fff5e1;
    text-decoration: none;
    font-size: 1.2em;
}

.box:hover {
    background-color: #f0c674;
}

.box:hover a {
    color: #a53860;
}

@media (max-width: 768px) {
    body {
        height: auto;
        padding: 20px;
    }

    .box {
        width: 120px;
        height: 120px;
        padding: 30px;
    }

    .box a {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    body {
        height: auto;
        padding: 20px;
    }

    .box a {
        font-size: 1em;
    }

    h1 {
        font-size: 2em;
    }
    
    body {
        height: auto;
    }
}