:root {
    --color-black: #000000;
    --color-lightblue: #8ff2ff;
    --color-main: #005299;
    --color-secondary: #002b50;
    --color-text: #ffffff;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: "Cabin", sans-serif;
    font-weight: 450;
    background-color: var(--color-secondary);
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    background-color: var(--color-main);
    padding: 20px;
    width: 90%;
    max-width: 700px;
    outline: #38bfd1 2px solid;
}

.footer {
    position: fixed;
    color: rgb(201, 201, 201);
    bottom: 0;
    display: flex;
    font-size: 15px;
}

.time {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 25px;
}

.me {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.me img {
    width: 100px;
    height: 100px;
    outline: var(--color-black) 2px solid;
}

.info {
    margin-left: 16px;
    color: #ffffff;
}

.info span {
    width: 100%;
    display: block;
    font-size: 25px;
}

.info .name {
    color: var(--color-lightblue);
    font-size: 35px;
    font-weight: bold;
}

.social {
    display: flex;
    justify-content: center;
}

.social a {
    margin: 0px 10px;
}

.social img {
    width: 40px; 
    height: 40px; 
    filter: brightness(0) invert(1);
}

.social img:hover {
    transform: scale(1.1);
    transition: 0.1s;
}

.bio {
    text-align: center;
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 10px;
}

._88x31 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
._88x31 img {
    width: 88px;
    height: 31px;
    margin: 5px;
}

._88x31 img:hover {
    transform: scale(1.1);
    transition: 0.1s;
}

iframe {
    display: flex;
    align-items: center;
}