:root {
    --superhero: 'Bangers', cursive;
    --fantasy: 'MedievalSharp', cursive;
    --space: 'Orbitron', sans-serif;
    --military: 'Black Ops One', cursive;
    --romantic: 'La Belle Aurore', cursive;
    --scary: 'Creepster', cursive;
    --cowboy: 'Rye', cursive;
    --regular: sans-serif;
    --fantasy: 'MedievalSharp', cursive;
    --font: var(--regular);
    --sharp: 0;
    --soft: 10px;
    --round: 100px;
    
    --image: var(--soft);
    
    --background: #f5f5f5;
    --text: #222222;
    
    --light: var(--background);
    --dark: var(--text);
    --alpha:0.35;
}


body, html {
    margin: 0;
    padding: 10px;
    background: var(--background); 
    background-image: url("background.jpg");
    background-size: cover;
    color: var(--text);
    font-family: var(--font);
    font-size: 18px;
}
h1{
    text-shadow:3px 5px 0px black;
}
h2,h3{
    text-shadow:3px 5px 5px black;
}
#stroke{
    text-shadow:0px 5px 10px black;
}

.img_pane{
    width: 800px;
    margin-top:30px;
}
.text_pane{
    margin-top:30px;
    margin-left:30px;
    margin-right:50px;
}
.flex{
    display: flex;
}

.button{
    border-radius: var(--image);
    text-align: center;
    border: none;
    padding-top:10px;
    padding-bottom:10px;
    background: var(--text);
    color: var(--background);
    font-weight: bold;
    box-sizing: border-box;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    cursor: pointer;
    font-family: var(--font);
    font-size:20px;
    width: 80%;
}
.btn {
    transition: background-color 0.25s ease, 
                color 0.25s ease, 
                transform 0.2s ease;
    opacity: 1;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.35);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--text);
}
.btn:active{
    opacity:0.75;
}
.btn_small {
    width:150px;
    padding-top:8px;
    padding-bottom:8px;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 0px;
    font-size:18px;
}
.btn_home {
    width:150px;
    padding-top:8px;
    padding-bottom:8px;
    margin-left: 20px;
    margin-right: 10px;
    margin-top: 10px;
    font-size:18px;
}
.linkedin:hover{
    background: rgb(11, 102, 195);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgb(11, 102, 195);
}
.github:hover{
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    box-shadow: 0 8px 20px rgb(255, 255, 255);
}
.hackerrank:hover{
    background: rgb(13, 20, 30);
    color:rgb(0, 234, 100);
    box-shadow: 0 8px 20px rgb(13, 20, 30);
}
.yahoo:hover{
    background: rgb(91, 0, 202);
    color: rgb(247, 247, 247);
    box-shadow: 0 8px 20px rgb(91, 0, 202);
}
.messenger:hover{
    background: rgb(8, 102, 255);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgb(8, 102, 255);
}
.whatsapp:hover{
    background: rgb(32, 191, 98);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgb(32, 191, 98);
}
.telegram:hover{
    background: rgb(50, 142, 234);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgb(50, 142, 234);
}
.discord:hover{
    background: rgb(93, 106, 242);
    color: rgb(255, 255, 255);
    box-shadow: 0 8px 20px rgb(93, 106, 242);
}

img {
    width: 80%;
    border-radius: calc(var(--image) * 2);
    border: 4px solid var(--text);
    display: block;
    margin: 0 auto;
}
.img{
    transition: transform 0.2s ease;
}
.img:hover{
    transform: scale(1.1);
    opacity: 0.9;
    box-shadow: 0 8px 20px var(--text);
}
.img:active{
    opacity:0.75;
}

a {
    color: var(--text);
    text-decoration: none;
}
.a_button{
    color: var(--background);
}
