/* * {
    outline: 1px solid #ffffff;
} */

body {
    margin: 0;
    background-image:
    url('./images/background_glitch.png'),
    linear-gradient(#FFD5D5, #8438FF);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "Archivo";
}

header {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

#nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border: 2px solid black;
    border-radius: 100px;
    box-shadow: 0px 12px 15px rgba(0, 0, 0, 0.300);
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 30px;
    margin-right: 30px;
    background-color: rgba(255, 255, 255, 0.300);
    backdrop-filter: blur(10px);
    position: fixed;
    z-index: 10;
}

#nav ul {
    padding: 0;
    margin-top: 15px;
    margin-bottom: 15px;
}

#nav a {
    color: black;
    text-decoration: none;
}

#nav a:hover {
    color: #5b0ed6;
}

#nav img {
    width: 30px;
    cursor: pointer;
}

.hero-section {
    width: 80%;
    margin: 0 auto;
    margin-top: 120px;
}

#pfp {
    float: left;
    padding-right: 20px;
    width: 250px;
    height: 250px;
}

.hero-content {
    margin-top: 40px;
    width: 80%;
}

.social-media {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    right: 6px;
}

.social-media img {
    width: 55px;
    height: 55px;
    cursor: pointer;
    padding-top: 5px;
    transition: 0.5s ease;
}

.social-media img:hover {
    padding-top: 0px;
}

.clean {
    clear: both;
}

.hs-name {
    margin-bottom: 20px;
}

.hs-name h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.hs-name h2 {
    margin-top: 2px;
    margin-bottom: 0;
}

#boxes-wrapper {
    width: 80%;
    margin: 0 auto;
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    align-items: stretch;
    text-align: center;
}

.box {
    background-color: rgba(246, 246, 246, 0.500);
    border: 2px solid #D01ED4;
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.box:hover {
    background-color: rgba(209, 30, 212, 0.500);
    border: 2px solid black;
    color: white;
}

.box ul {
    list-style: none;
    padding: 0;
}

.box ul li {
    font-family: "Archivo";
    font-weight: 200;
    margin-bottom: 35px;
}

.box-content {
    display: flex;
    flex-direction: column;
    justify-content: column;
    flex-grow: 1;
    width: 100%;
    margin: 0 auto
}

.btn {
    background-color: #5EC9FF;
    border: none;
    border-radius: 50px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.500);
    padding: 15px 15px 15px 15px;
    cursor: pointer;
    margin-top: auto;
    width: fit-content;
    align-self: center;
    transition: 0.5s ease;
}

.btn:hover {
    background-color: #a4e1ff;
}

.btn a {
    text-decoration: none;
    color: black;
    font-family: "Archivo";
    font-size: 15px;
}

footer {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.555);
    backdrop-filter: blur(10px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1280px) {
.hero-section {
    margin-top: 180px;
}

.hero-content p {
    width: 125%;
}
}

@media (max-width: 950px) {
#boxes-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.box {
    padding-left: 0;
    padding-right: 0;
}
}

@media (max-width: 760px) {
.hs-name h1 {
    font-size: 40px;
}

.hs-name h2 {
    font-size: 30px;
}

.social-media img {
    width: 45px;
    height: 45px;
}
}

@media (max-width: 630px) {
header {
    justify-content: center;
}

#nav {
    width: 100%;
    border-bottom: 2px solid black;
    border-radius: 0px;
    margin-top: 0;
}

.hero-section {
    margin-top: 120px;
}

.hero-section p {
    text-align: center;
}

.hs-name {
    text-align: center;
}

.box-content {
    width: 90%;
}

#pfp {
    float: left;
    padding-right: 0;
}

.hero-content p {
    width: 100%;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media {
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.social-media img {
    width: 65px;
    height: 65px;
}

.hs-name h1 {
    font-size: 33px;
}

.hs-name h2 {
    font-size: 22px;
}

}

@media (max-width: 480px) {
.hero-section {
    margin-top: 120px;
}

header {
    justify-content: center;
}

#nav {
    margin-right: 0;
}

.hs-name h1 {
    font-size: 28px;
}

.hs-name h2 {
    font-size: 20px;
}

.social-media {
    gap: 10px;
}
}