html,
body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;

    font-family: 'Courgette', serif;
}

a:hover {
    color: #E28AA6 !important;
}

.default-button {
    background-color: #FFFFF0;
    padding: 10px 30px;
    border-radius: 15px;
    font-size: 16pt;
}

.font-accent-color {
    color: #ff90ad;
}

.no-scroll {
    overflow: hidden;
}

.rotate {
    -webkit-animation: rotation 2s linear infinite;
    -moz-animation: rotation 2s linear infinite;
    -ms-animation: rotation 2s linear infinite;
    animation: rotation 2s linear infinite;
}

.rotate-180 {
    transform: rotate(180deg);
}

.section-title {
    position: relative;
    width: fit-content;

    padding: 0px 60px;

    color: #fff;
    font-size: 64pt;

    border-bottom: 2px solid #fff;
}

.section-title.left {
    top: 50px;
    left: 100px;
}

.show-on-visible {
    visibility: hidden;
}

.special-button {
    width: auto;
    height: auto;
    padding: 15px 20px;
    border-radius: 18px;
    font-size: 16pt;
    cursor: pointer;
    background-color: rgb(250, 250, 250);
    color: #000;
    border: none;
    transition: all .4s;
    line-height: 20px;

    box-shadow: 0 4px 6px #ff90ad, 0 1px 3px #ff90ad;
}

.special-button:disabled {
    background-color: #dddddd;
    transform: none !important;
    box-shadow: none !important;
}

.special-button:hover {
    border-radius: 15px;
    transform: translateY(-10px);
    box-shadow: 0 7px 0 -2px #E28AA6,
        0 15px 0 -4px #2B1609,
        0 16px 10px -3px #2B1609;
}

.special-button:active {
    transition: all 0.2s;
    transform: translateY(-5px);
    box-shadow: 0 2px 0 -2px #E28AA6,
        0 8px 0 -4px #2B1609,
        0 12px 10px -3px #2B1609;
}

.special-button>a {
    text-decoration: none;
    color: #000;
}

.special-button .button-subtext {
    font-size: 9.5pt;
}

.special-hr {
    color: #ff9aba;
    border-width: 4px;
    border-radius: 5px;
    opacity: 1;
}

/* Google Font */
/* Tangerine */
.tangerine-bold {
    font-family: "Tangerine", cursive;
    font-weight: 700;
    font-style: normal;
}

.tangerine-regular {
    font-family: "Tangerine", cursive;
    font-weight: 400;
    font-style: normal;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotation {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes rotation {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .special-button {
        font-size: 10pt;
    }

    .special-button .button-subtext {
        font-size: 7pt;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .special-button {
        font-size: 10pt;
    }

    .special-button .button-subtext {
        font-size: 7pt;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .special-button {
        font-size: 12pt;
    }

    .special-button .button-subtext {
        font-size: 8pt;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .special-button {
        font-size: 14pt;
    }

    .special-button .button-subtext {
        font-size: 8.75pt;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .special-button {
        font-size: 16pt;
    }

    .special-button .button-subtext {
        font-size: 9.5pt;
    }
}

@media only screen and (min-width: 1350px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1500px) {}