@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css?family=Varela+Round');

:root {
    --vcr-green: #59b847;
    --bg-color: #eeeeee;
}
 
* {
box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.no-select {
    /* Disable Text Selection */
    user-select: none; /* supported by Chrome and Opera */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
}
 
#header {
    position: relative;
}

#header a {
    text-decoration: none;
    color: #000;
}
 
#header a:visited, #header a:active {
    text-decoration: none;
    color: #000;
}
 
#header h1 {
    font-family: Arial, sans-serif;
    font-size: 2.1rem;
    text-align: center;
    text-transform: uppercase;
    margin: 50px 0;
}
 
#header h1 span {
    color: var(--vcr-green);
}
 
#header p {
    font-size: 2rem;
    text-align: center;
    margin-top: -30px;
}

#search {
    position: relative;
}

#inputString {
    width: 900px;
    height: 36px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: lighter;
    border: 1px solid #ccc;
    outline: none;
    padding: 0px 20px;
    padding-right: 60px;
    color: #505050;
}

#inputString:focus {
    outline-color: none;
    box-shadow: 0 0 10px 1px #c2c2c2; 
}

#inputString::placeholder {
    opacity: 0.5;
}

#eraseBtn {
    width: 50px;
    height: 36px;
    cursor: pointer;
    border-radius: 0 100px 100px 0;
    position: absolute;
    right: 0px;
    font-size: 1.5rem;
    border: 1px solid #B0B0B0;
    background-color: #E5E4E2;
    color: #505050;
    outline-color: #505050;
    transition: all 0.5s ease-in-out;
}

#eraseBtn:hover {
    color: #000;
    background-color: #efdfbb;
    transition: all  0.25s ease-in-out;
}

#main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px;
    position: relative;
}

#links {
    margin-top: 2rem;
}

#links ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

#links ul li {
    list-style: none;
    width: 300px;
    height: 42px; /* adjust this according to no. of li items */
    font-size: 1.2rem;
}

#links ul li a {
    text-decoration: none;
    border-bottom: 1px solid #000;
    color: #000;
    transition: all 0.5s ease-in-out;
}

#links ul li a:hover {
    border-bottom: 1px dotted var(--vcr-green);
    color: var(--vcr-green);
    transition: all 0.3s ease-in-out;
}

#links ul li a:active {
    color: var(--vcr-green);
}

.info-special {
    background-color: #505050;
    border-radius: 10px;
    width: 350px;
    height: 100px;
    position: absolute;
    bottom: -40%;
    left: 32%;
    display: none;
}

.info-special ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
}

.info-special ul li {
    font-size: 0.8rem;
    color: #ececec;
    list-style: none;
    font-size: 1.05rem;
    padding: 5px;
}

.add-new-sheet::after {
    content: ' *';
    color: red;
}

.info-msg {
    margin: 0 0 50px 20px;
}


#footer {
	background:#e2e2e2;
    color: #808080;
	width:100%;
	text-align: center;
	position: fixed;
	bottom:0;
	left: 0;
    padding: 25px;
	font-size: 16px;
	font-family: 'Varela Round', sans-serif;
	border-top: 1px solid #cecece;
}
/* MOBILE */
@media(max-width: 800px) {
    #links {
        margin-top: 1rem;
    }
    
    #links ul {
        display: flex;
        flex-direction: column;
        width: 400px;
    }
    
    #links ul li {
        width: 400px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    #inputString {
        width: 400px;
        height: 36px;
    }
    
    #inputString::placeholder {
        opacity: 0.6;
        font-weight: 400;
    }
    
    .info-msg {
        margin: 0 0 -20px 20px;
    }
    
    #eraseBtn {
        display: none;
    }
    
    #footer {
        position: static;
    }

}