* {
    font-family: Roboto, sans-serif;
    font-weight: 100;
}

header {
    background-color: azure;
    top: 0;
    position: absolute;
    height: 10%;
    width: auto;
    left: 0;
    right: 0;
    margin-bottom: 10em;
}

.spacing {
    margin-top: 20%;
    margin-bottom: 20%;
}

body {
    background: linear-gradient(#141e30, #243b55);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

header {
    height: 5vw;
}

.div-logo {
    margin-left: 1vw;
    margin-top: 1vw;
    width: auto;
}

.counter {
    margin-top: 5vw;
}

.logo {
    min-width: 3vw;
    max-height: 3vw;
    max-width: 3vw;
    display: block;
}

.all {
    background: black;
    background: hsla(197, 72%, 72%, 0.49);
    color: rgb(255, 255, 255);
    transition: background 1s;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 10vw;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, .6);
}

.all-aboutme {
    background: black;
    background: hsla(197, 72%, 72%, 0.70);
    color: rgb(255, 255, 255);
    transition: background 1s;
    border-radius: 30px;
    margin-left: auto;
    margin-right: auto;
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 10vw;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, .6);
}

.button {
    background-color: Transparent;
    border: none;
    overflow: hidden;
    color: #03e9f4;
    font-size: 1vw;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    letter-spacing: 4px
}

#twitter {
    text-decoration: none;
    font-size: 4vw;
    color: lightblue;
    text-shadow: 2px 2px 4px #000000;
    padding-right: 5%;
    padding-bottom: 2vw;
}

#facebook {
    text-decoration: none;
    font-size: 4vw;
    color: lightblue;
    text-shadow: 2px 2px 4px #000000;
    padding-right: 5%;
    padding-bottom: 2vw;
}

#envelope {
    text-decoration: none;
    font-size: 4vw;
    color: lightblue;
    text-shadow: 2px 2px 4px #000000;
    padding-right: 5%;
    padding-bottom: 2vw;
}

#github {
    text-decoration: none;
    font-size: 4vw;
    color: lightblue;
    text-shadow: 2px 2px 4px #000000;
    padding-right: 5%;
    padding-bottom: 2vw;
}

#insta {
    text-decoration: none;
    font-size: 4vw;
    color: lightblue;
    text-shadow: 2px 2px 4px #000000;
    padding-right: 5%;
    padding-bottom: 2vw;
}

.name {
    font-size: 50px;
    font-size: 5vw;
    font-size: auto;
    text-decoration: underline;
    text-underline-offset: 10px;
    color: white;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px #000000;
}

.image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
}

p {
    font-size: 2vw;
    color: white;
    text-align: center;
}

.div-text {
    margin-top: 20%;
}

.wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background: #000;
    transition: all 0.6s ease-in-out;
}

#active:checked~.wrapper {
    right: 0;
}

.menu-btn {
    position: absolute;
    z-index: 2;
    right: 2vw;
    top: 0px;
    height: 5vw;
    width: 6vw;
    text-align: center;
    line-height: 5vw;
    border-radius: 60%;
    font-size: 5vw;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 40%;
    width: 50%;
    border-bottom: 2px solid #141e30;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
    transform: translateY(-8px);
}

.menu-btn:after {
    transform: translateY(8px);
}

.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
}

#active:checked+.menu-btn span {
    transform: scaleX(0);
}

#active:checked+.menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}

#active:checked+.menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}

.wrapper ul {
    position: absolute;
    top: 60%;
    left: 50%;
    height: 90%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.wrapper ul li {
    height: 10%;
    margin: 15px 0;
}

.wrapper ul li a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: lightblue;
    border-radius: 50px;
    position: absolute;
    line-height: 50px;
    margin: 5px 30px;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wrapper ul li a:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s ease;
}

.wrapper ul li a:hover:after {
    transform: scaleY(1);
}

.wrapper ul li a:hover {
    color: rgb(0, 176, 235);
}

input[type="checkbox"] {
    display: none;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    text-align: center;
    width: 100%;
    color: #202020;
}

.content .title {
    font-size: 40px;
    font-weight: 700;
}

.content p {
    font-size: 35px;
    font-weight: 600;
}

#active:checked~.wrapper ul li a {
    opacity: 1;
}

.wrapper ul li a {
    transition: opacity 1.2s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateX(100px);
}

#active:checked~.wrapper ul li a {
    transform: none;
    transition-timing-function: ease, cubic-bezier(.1, 1.3, .3, 1);
    transition-delay: .6s;
    transform: translateX(-100px);
}

.message-box {
    text-align: center;
    margin-left: 50%;
    margin-right: 45%;
    top: 50%;
    left: 50%;
    width: 50vw;
    padding: 2vw;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, .6);
    border-radius: 1vw;
}

.message-box h2 {
    margin: 0 0 2vw;
    padding: 0;
    color: #fff;
    text-align: center;
}

.message-box .user-box {
    position: relative;
}

.message-box .user-box input {
    width: 100%;
    padding: 1vw 0;
    font-size: 1vw;
    color: #fff;
    margin-bottom: 2vw;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.message-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1vw 0;
    font-size: 1vw;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.message-box .user-box input:focus~label,
.message-box .user-box input:valid~label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 1vw;
}

.message-box form a {
    position: relative;
    display: inline-block;
    padding: 0.7vw 1.5vw;
    color: #03e9f4;
    font-size: 1vw;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 2vw;
    letter-spacing: 4px
}

.message-box a:hover {
    background: #03e9f4;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #03e9f4, 0 0 2vw #03e9f4, 0 0 5vw #03e9f4, 0 0 10vw #03e9f4;
}

.message-box a span {
    position: absolute;
    display: block;
}

.message-box a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #03e9f4);
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%,
    100% {
        left: 100%;
    }
}

.message-box a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #03e9f4);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%,
    100% {
        top: 100%;
    }
}

.message-box a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #03e9f4);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%,
    100% {
        right: 100%;
    }
}

.message-box a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #03e9f4);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%,
    100% {
        bottom: 100%;
    }
}