@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    background-color: #efefef;
    color: #000;
}

.title {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    height: fit-content;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #fff;
    backdrop-filter: blur(20px);
}

.title h2 {
    text-transform: uppercase;
    color: #000;
    font-size: 3em;
    font-weight: 800;
    letter-spacing: 3px;
    text-align: center;
}

.content {
    margin-top: 150px;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
}

.content div {
    margin-top: 30px;
}

span {
    font-weight: bold;
    text-transform: uppercase;
}

ul {
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul li {
    font-weight: 700;
    color: #000;
}

ul p {
    font-weight: 400;
    color: #000;
}

.footer {
    height: fit-content;
    width: 100%;
    background-color: #1f1e1e;
    display: flex;
    flex-direction: column;
}

.info {
    height: fit-content;
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.info a, .developer a {
    color: #fff;
    transition: 0.4s;
    width: fit-content;
}

.info a:hover, .developer a:hover {
    opacity: 0.6;
}

.developer {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
}

.developer p {
    color: #cfcdcd;
}

.developer span {
    font-weight: bold;
}


@media screen and (max-width: 1065px) {
    .content, .info, .developer {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 500px) {
    .title h2 {
        font-size: 2.8em;
        text-align: center;
    }
}

@media screen and (max-width: 445px) {
    .title h2 {
        font-size: 2.3em;
    }
}

@media screen and (max-width: 390px) {
    .title h2 {
        font-size: 2em;
    }
}


