@import url('https://fonts.googleapis.com/css2?family=Playwrite+NZ:wght@100..400&display=swap');

.playwrite-nz {
  font-family: "Playwrite NZ", cursive;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
    background-color: #FDFDF3;
    font-family: "Playwrite NZ";
}

header {
    text-align: center;
}

section {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    padding: 20px;
}

a{
    color: black;
    animation: nameAnimation 5s linear infinite normal;
}

h1 {
    font-size: 42px;
    font-weight: bold;
}

h2 {
    font-size: 32px;
    font-weight: bold;
}

p {
    font-size: 20px;
    font-weight: bold;
}

ul {
    font-size: 20px;
    width: fit-content;
    margin: auto;
    text-align: left;
    font-weight: bold;
}

#infoText{
    text-align: center;
    width: fit-content;
    margin: auto;
    margin-top: -20px;
    margin-bottom: -20px;
}

img {
    max-height: 300px;
    margin-bottom: -20px;
}

#program{
    font-size: 24px;
    margin-top: -10px;
}

#name {
    color: black;
    animation: nameAnimation 5s linear infinite normal;
    text-decoration: underline;
    text-decoration-thickness: 5px;
}

@keyframes nameAnimation {
    0% {
        color: #f43545;
        text-decoration-color: #f43545;
    }

    20% {
        color: #fa8901;
        text-decoration-color: #fa8901;
    }

    40% {
        color: #00ba71;
        text-decoration-color: #00ba71;
    }

    60% {
        color: #00c2de;
        text-decoration-color: #00c2de;
    }

    80% {
        color: #5f2879;
        text-decoration-color: #5f2879;
    }

    100% {
        color: #f43545;
        text-decoration-color: #f43545;
    }
}

#gift {
    position: relative;
    width: 350px;
    margin: auto;
    padding-top: 20px;
    cursor: pointer;
}

.giftTop {
    width: 300px;
    height: 50px;
    margin: auto;
    background-color: #9b202b;
}

.giftBody {
    width: 250px;
    height: 250px;
    margin: auto;
    background-color: #f43545;
}

#giftHor {
    width: 250px;
    height: 50px;
    margin: auto;
    background-color: #fad717;
    position: absolute;
    left: 50px;
    bottom: 105px;
}

#giftVer {
    width: 50px;
    height: 250px;
    margin: auto;
    background-color: #fad717;
    position: absolute;
    left: 150px;
    bottom: 0px;
}

canvas {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 99%;
    margin: 0;
    margin-top: -50px;
    position: absolute;
    z-index: 2;
}

.hidden {
    display: none !important;
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    canvas {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 99%;
    margin: 0;
    margin-top: -50px;
    position: absolute;
    height: 200dvh;
    z-index: 2;
}

}