/* landing page style */

.lan {
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #000000;
}
.lan .container {
    position: relative;
    width: 600px;
    height: 400px;
}
.lan .textbox {
    position: absolute;
    top: 13%;
    left: 30%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 2px solid #000;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    text-align: center;
}
.lan .goku-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 380px;
    background-image: url('images/goku.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.lan .about-me {
    margin-top: 50px;
    text-align: center;
    font-size: 1.5rem;
    width: 80%;
}
.lan .about-me-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 2rem;
}


/* The other pages without lan class */

body {
    background-color: #000000;
}

.container {
    max-width: 90%;
    margin: auto;
    height: 400px;
}

.textbox {
    background-color: #ffffff;
    border-color: #ff00ff;
    color: #c14ac1;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
}

.goku-image {
    max-width: 100%;
    height: auto;
}

.about-me {
    background-color: #ffffff;
    border: 2px solid #ff00ff;
    color: #ff00ff;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    max-width: 90%;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0px 0px 20px rgba(255, 0, 255, 1);
}
.about-me-title {
    color: #c14ac1;
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .textbox {
        font-size: 1.2rem;
    }
    .about-me-title {
        font-size: 2rem;
    }
}

.next-page-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff00ff;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-family: 'Comic Sans MS';
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 150, 136, 0.5);
    transition: background-color 0.5s, box-shadow 0.5s;
}

.next-page-button:hover {
    background-color: #00796b;
    box-shadow: 0px 0px 15px rgba(0, 150, 136, 0.7);
}

.prev-page-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #ff00ff;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-family: 'Comic Sans MS';
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 150, 136, 0.5);
    transition: background-color 0.5s, box-shadow 0.5s;
}

.prev-page-button:hover {
    background-color: #00796b;
    box-shadow: 0px 0px 15px rgba(0, 150, 136, 0.7);
}

.ebutton {
    position: fixed;
    bottom: 20px;
    right: 40%;
    left: 40%;
    background-color: #ff00ff;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-family: 'Comic Sans MS';
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 150, 136, 0.5);
    transition: background-color 0.5s, box-shadow 0.5s;
}

.ebutton:hover {
    background-color: #00796b;
    box-shadow: 0px 0px 15px rgba(0, 150, 136, 0.7);
}

header h1 {
    text-align: center;
}

.resume{
    width: 50%;
    margin: 0 auto;
    background-color: #ffffff;
    border: 5px solid #ff00ff;
    color: #ff00ff;
    padding: 10px;
    box-shadow: 0px 0px 20px rgba(255, 0, 255, 1);
    box-sizing: border-box;
}
.resume embed{
    display:block;
    width: 100%;
    height: 500px;
}

.resume img{
    display:block;
    width: 100%;
    height: 100%;
}


/* style buttons */

#one{
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff00ff;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-family: 'Comic Sans MS';
    font-size: 1.2rem;
    border-radius: 50px;
}
#two{
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgb(240, 236, 130);
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-family: system-ui;
    font-size: 1.2rem;
    border-radius: 50px;
}


