/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F5F5F5;
    color: #4a148c;
    text-align: center;
    overflow: hidden;
}

#home {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 100vh;
}
#home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#home-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
#home-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
a {
    text-decoration: underline;
    color: #4a148c;
    font-weight: bold;

}

.animated-svg {
    /*position: absolute;
    top: 100%;
    /*animation: moveSvg 4s linear infinite; */
    width: 100%;
    height: 100%;
    padding: 0%;
    margin: 0%;
}
/*
@keyframes moveSvg {
    0% {
        top: 100%;
    }
    100% {
        top: -100%;
    }
}
*/

/*make responsive*/
@media (max-width: 768px) {
    #container {
        position: relative;
        width: 300px;
        height: 300px;
    }

    #svg-lines, #home-content {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    #svg-lines {
        z-index: 1;
        opacity: 0.2; 
    }

    #home-content {
        z-index: 2; 
        opacity: 0.8; 
    }
    #home-content h1 {
        font-size: 2rem;
        font-weight: bold;
    }
    #home-content p {
        font-size: 1rem;
        font-weight: bold;
    }
}