@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap');

*{
    font-family:'Poppins', Arial, sans-serif;
}
.start{
    font-family:'Poppins', Arial, sans-serif;
    width: 100vw;
    height: 30vh;
    background-image: url(./img/background.svg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.logo{
    background-color: black;
    border-radius: 1em;
}

.start h2{
    background-color: white;
    font-weight: bold;
    color: black;
}
.initiative{
    width: 100%;
    margin: 2vh 0;
}
#links{
    width: 100%;
    text-align: center;
    border-bottom: solid 1px black;
}
.link{
    width: 100%;
    font-weight: bold;
    color: black;
}
#txt{
    text-align: justify;
}
#txt h3{
    font-weight: bold;
    color: black;
    text-align: center;
}
#txt a{
    font-weight: bold;
    color: #009234;
}
#ctt-area{
}
#ctt-area p{
    font-weight: bold;
}
#ctt-area a{
    color: black;
    font-weight: bold;
}

html{
    scroll-behavior: smooth;
 }
 
@media (min-width: 600px){
    @media (min-width: 600px) and (max-width: 1000px){
        .logo{
            padding: 1%;
            width: 35%;
        }
    }
    @media (min-width: 1001px){
        .logo{
            padding: 1%;
            width: 15%;
        }
    }
    .start h2{
        font-size: 1.3em;
        padding: 0.5em;
    }
    #links{
        margin-bottom: 2vw;
        padding-bottom: 1vw;
    }
    #links a{
        font-size: 1.3em;
    }
    #links p{
        margin-top: 0.5vh;
        font-size: 1em;
    }
    #txt{
        margin: 0 10vw;
    }
    #txt h3{
        font-size: 1.5em;
        margin-bottom: 2vh;
    }
    #txt p{
        margin-bottom: 2vh;
        font-size: 1vw;
        line-height: 2vw;
    }
    #floating-bottom{
        display: none;
    }
}
@media (max-width: 599px){
    @media (max-width: 450px){
        .logo{
            padding: 4%;
            width: 55%;
        }
    }
    @media (max-width: 599px){
        .logo{
            padding: 3%;
            width: 40%;
        }
    }

    .start h2{
        font-size: 0.8em;
        padding: 0.5em;
    }
    #links{
        margin-bottom: 5vw;
        padding-bottom: 5vw;
    }
    #links p{
        margin-top: 0.4vh;
        font-size: 0.9em;
    }
    #txt{
        margin: 0 5vw;
    }
    #txt h3{
        line-height: 3vh;
        margin-bottom: 2vh;
    }
    #txt p{
        margin-bottom: 2vw;
        font-size: 3vw;
        line-height: 3vh;
    }
    #floating-bottom{
        position: fixed;
        right: 2em;
        bottom: 2em;
        text-decoration: none;
        background-color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        border-radius: 100%;
        font-size: 0.8em;
        width: 5vw;
        height: 5vw;
        text-align: center;
    }
    #floating-bottom:hover{
        position: none;
    }
}
/*RESET CSS*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
