/* Common CSS */

@import url('https://fonts.googleapis.com/css2?family=Young+Serif&display=swap');


body {
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

h1,
h2,
h3 {
    color: rgb(129, 227, 93);
    text-align: center;
}

hr {
    width: 50%;
    margin: 0 auto;
    border: 2px dotted rgb(129, 227, 93);
}

/* Navigation Links */
a {
    color: rgb(129, 227, 93);
    font-size: 20px;
    text-decoration: none;
}

a:hover {
    font-size: 26px;
}

/* Profile Picture */
img {
    border-radius: 20%;
    transition: all 0.3s ease-in-out;
}

img:hover {
    width: 500px;
}

/* Table Styles */
table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid rgb(109, 189, 47);
    padding: 8px;
}

/* List Styles */
ul,
ol {
    list-style: none;
    margin-right: 35px;
}

/* Contact Form Styles */
label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid rgb(109, 189, 47);
}

input[type="submit"] {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Background Images */
body {
    /* background-image: url('/image/Untitled\ design.png');  */
    background-repeat: no-repeat;
    background-size: cover;
}

.skills,
.hobbies {

    text-align: center;

}

.movies {
    margin-left: 5%;
    width: 90%;
    text-align: center;
}



table {
    border-collapse: collapse;
    width: 100%;
}

table tr{
    text-align: center;
}

table td,
table th {
    border: 1px solid #ddd;
    padding: 10px;

}

table tr:nth-child(even) {
    background-color: #f0f0f098;
}

table tr:hover {
    background-color: #ddd;
}

table th {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(109, 189, 47);
    color: white;
}

header{
    background-color: rgb(129, 227, 93);
    color: aliceblue;
    margin: 0;
    padding: 20px;
    text-align: center;
}

nav a {
    text-decoration: none;
    display: inline;
    margin: 0;
    background-color: transparent;
    padding: 21px;
}

nav a.active {
    background-color: rgb(109, 189, 47);
    &:hover{
        background-color: rgb(109, 189, 47);
    }
}

nav a:hover {
    background-color: #333;
}

section, article {
    padding: 5px;
    border: 2px solid rgb(109, 189, 47);
    border-radius: 5px;
    margin-top: 1px;
    margin-bottom: 10px;
    text-align: center;
}

footer {
    background-color: #333;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}


footer a {
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    &:hover {
        color: #ddd;
        transform: translateY(-2px);
    }
}
