html {
    height: 100%;
}

body {
    background: linear-gradient(to bottom, #A0E5FA 6%, #670067 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Bree Serif', serif;
    color: white;
    font-weight: 100;
    margin: 0;
    padding: 0;
}

.wrapper {
    margin-left: 5%;
    margin-top: 5%;
}

h1 {
    font-size: 50px;
    margin-top: 0;
}

h3 {
    margin-bottom: 0;
}

.text {
    display: inline-block;
    text-align: left;
    font-size: 26px;
}

.social {
    position: relative;
    margin-top: 50px;
}

.social a {
    color: white;
    margin: 20px;
    text-decoration: none;
}

.social i {
    padding: 10px;
    border: 2px solid white;
    border-radius: 50%;
}

.cursor {
    font-size: 35px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}

@media (max-width: 768px) {
    .wrapper h1 {
        font-size: 34px;
    }
    .wrapper h3 {
        font-size: 28px;
    }
    .text {
        font-size: 22px;
    }
    .social {
        text-align: center;
    }
    .social i {
        font-size: 22px;
    }
    .social a {
        margin: 5px;
    }
}

section {
    margin-top: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

h2 {
    color: #FFD700;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}