@charset "UTF-8";

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Co Text Regular";
    color: white;
}

a:link {
  color: white;
  text-overflow: white;
  text-decoration:none;
}
a:visited {
  color:aliceblue;
  text-decoration:none;
}
a:hover {
  color:#989898;
  text-decoration:underline;
}
a:active {
  color:#0016BC;
  text-decoration:underline;
  background-color:#000000;
  font-weight:bold;
}

#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    z-index: 1;
}

.retangulo {
 width: 25%;
 margin: 0 auto;
 line-height:0;
 height: 0px;
 display: flex;
 align-items: center;
 justify-content: center;
 border: 20px solid;
 position: relative;
 border-color: #000F83;
 opacity: 70%;
 text-align: center;
}

header {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-pic-container {
    width: 250px;
    height: 250px;
    margin: 20px;
    border-radius: 60%;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin-top: 10px;
    font-size: 35px;
	font-size: clamp(1em, 1em + 1vw, 1.5em);
    text-shadow: 2px 2px 2px blue;
}

.card {
    width: 90%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	background-color: solid 40px darkblue;
    border-radius: 20px;
    box-shadow: 30px rgba(0, 0, 0, 0.5);
    padding: 20px;
    backdrop-filter: blur(10px);
    margin: 20px;
}

.social-link {
    display: block;
	border: 10px solid transparent;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: 40px blue,blue,0.5;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background-color: rgba(aliceblue, 255, 255, 0.3);
    transform: scale(1.1);
}

.footer {
	display: flex;
  	justify-content: center;
  	align-items: center;
  	text-align: center;
  	height: 100px;
	color: whitesmoke;
	font-weight:bold;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        height: auto;
        padding: 10px;
    }
	
    .profile-pic-container {
        width: 200px;
        height: 200px;
    }

    h1 {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .profile-pic-container {
        width: 150px;
        height: 150px;
    }

    .social-link {
        margin: 10px;
        padding: 10px;
    }
}