body {
    margin-top: 2em;
    margin-left: 5em;
    margin-right: 5em;
    margin-bottom: 2em;
    height: 100%;
    font-family: Arial, "Brush Script MT", "Lucida Handwriting";
    background-image: url('wall.svg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}
.content {
    text-align: center;
}

.button {
    transition-duration: 0.5s;
    padding: 10px 20px;
    width: fit-content;
    text-align: center;
    align-content: center;
    color: white;
    text-decoration: none; /* remove underline */
    border-radius: 40px;
    background: black;
    border: 3px solid transparent;
    cursor: pointer;
    margin-right: 10px;
    margin-left: 10px;
    font-family: "Lucida handwriting", "Brush Script MT", Arial;
}

.button:hover {
    background: white;
    color: black;
    transform: scale(1.1);
    box-shadow: 0 8px 16px 0 rgba(255,255,255,1);
}
div.fixed {
    position: fixed;
    bottom: 0;
    right: 1;
    text-align: center;
    padding: 10px;
    color: white;
    background-color: solid transparent;
}
.about {
    color: white;
    background: rgb(94 0 255 / 96%);
    align-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 20%;
    margin-left: 20%;
    border: 5px solid white;
}

.linfo {
    display: grid;
    grid-template-columns: auto auto auto auto;
    background-color: solid transparent;
    align-content: center;
    justify-content: center;
}

.linfo > div {
    padding: 10px;
    font-size: 16px;
}

/*hover effects*/
.hover-container {
    text-align: center;
    font-family: "Brush Script MT", "Lucida Handwriting", Arial;
    color: white;
}

.hover-text {
    font-size: 7em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-text:hover {
    transform: translateY(-10px);
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hover-scale {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hover-scale:hover {
    transform: scale(1.2);
}

.hover-rotate {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    font-size: 7em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-glow:hover {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff;
    color: #5e00ffff;
}

/*slide*/
.slide-container {
    overflow: hidden;
    color: white;
}

.slide-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-container h1 {
    font-family: "Brush Script MT", "Lucida handwriting", Arial;
    color: white;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.slide-container h3 {
    color: white;
    margin-bottom: 10px;
}

.article-overview {
    color: white;
    transition-duration: 0.5s;
    background: rgb(94 0 255 / 96%);
    align-content: center;
    text-align: left;
    border-radius: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 20%;
    margin-left: 20%;
    border: 5px solid white;
    cursor: pointer;
}



.article-overview:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px 0 rgba(255,255,255,1);
}
.article-overview-title {
    color: white;
    font-family: "Lucida handwriting", "Brush Script MT", Arial;
    margin-left: 5%;
}
.article-overview-description {
    color: white;
    font-family: "Arial";
    margin-left: 5%;
}

/* unvisited link */
.ab:link {
    color: cyan;
    opacity: 0.9;
}

/* visited link */
.ab:visited {
    color: cyan;
}

/* mouse over link */
.ab:hover {
    color: white;
}

/* selected link */
.ab:active {
    color: white;
}

/* unvisited link */
.artlink:link {
    text-decoration: none;
}

/* visited link */
.artlink:visited {
    text-decoration: none;
}

/* mouse over link */
.artlink:hover {
    text-decoration: none;
}

/* selected link */
.artlink:active {
    text-decoration: none;
}

/* Everything after this comment is for the entire blog articles */

.article {
    color: white;
    transition-duration: 0.5s;
    background: rgb(94 0 255 / 96%);
    align-content: center;
    text-align: left;
    border-radius: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
    margin-right: 10%;
    margin-left: 10%;
    padding-left: 5%;
    padding-right: 5%;
    border: 5px solid white;
    cursor: pointer;
}

.article-title {
    color: white;
    text-align: center;
    font-family: Arial;
    margin-left: 5%;
}
.article-description {
    color: white;
    font-family: "Arial";
    text-align: center;
}

.article-text {
    font-size: 18px;
}
.blogimg {
    border-radius: 40px;
}

li {
    font-size: 18px;
}
