@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Nunito', sans-serif;
    line-height: 1.5;
}

.container {
    width: 100%;
    margin: auto;
}


/* Navigator */
.top {
    background: url(main.jpg) no-repeat;
    background-attachment: fixed;
    background-position: 50% 70%;
    background-size: cover;
    width: 100%;
    height: 80vh
}

ul {
    font-family: 'Open Sans', sans-serif;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    margin-right: 30px;
}

a {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    padding-bottom: 5px;
    margin: 10px 30px;

    transition: border-bottom 0.5s;
	transition: opacity 0.5s;
}

.top a:hover {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
 
    opacity: 0.7;
    border-bottom: 1px solid #fff;
 }

 .dark {
    font-weight: 700;
    border-bottom: 2px solid #fff;
}

/* Header */
.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 90px;

    color: #fff;
}

.content h1 {
    font-weight: 300;
    font-size: 90px;
    letter-spacing: 5px;
    line-height: 1.2;
    text-align: center;
}

.content h3 {
    letter-spacing: 3px;
    text-align: center;
}

.mid {
    background: rgb(161, 245, 197);
    /* height: 700px; */
    padding-bottom: 50px;
}

.info {
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.info h2{
    font-size: 70px;
    font-weight: 300;
    margin-bottom: 20px;
}

.p {
    width: 80%;
    margin: auto;
    font-weight: 600;
    text-align: start;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

#p2 {
    font-weight: 600;
    font-family: monospace;
    word-spacing: 0.6rem;
}

.social {
    background: #3a4052;
    padding: 30px;
    color: #fff;
    text-align: center;

    margin: auto;
}

.social h2 {
    font-size: 20px;;
    margin-bottom: 10px;
}

.social a {
    font-size: 14px;
    color: #fff;
}

.social a:hover {
    opacity: 0.7;
}

/* Media Query */
@media(max-width: 1000px) {
    .content {
        margin-top: 130px;
    }

    .content h2 {
        font-size: 70px;
    }
}

@media(max-width: 768px) {
    .top {
        background: url(main.jpg) no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-position: 50% 100%;
        height: 80vh;        
    }

    .content {
        margin: 0 20px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .content h1 {
        letter-spacing: 3px;
        font-size: 70px;
        margin-top: 150px;
        line-height: 75px;
    }

    .main-nav {
        display: flex;
        justify-content: center;
    }

    .info {
        margin: 0 20px
    }

    .info h2 {
        line-height: 75px;
    }
}

@media(max-width: 440px) {
    .content h1 {
        line-height: 75px;
    }

    .main-nav ul {
        display: flex;
       
        margin: auto;
        text-align: center;
        font-size: 15px;
    }

    .main-nav a {
        margin: 20px;
    }
}


























