@import url('fonts/main_font.css');

* {
    margin-top: 0;
}

body {
    font-family: "StratosSkyeng", Arial, sans-serif;
    background: hsl(226, 86%, 17%);
    margin: 0;
    padding: 0;
    color: white;
}

h1 {
    text-align: center;
    margin-top: 80px;
    font-size: 32px;
}


h2 {
    font-size: 24px;
    margin: 10px;
    margin-top: 80px;
}

h1 {
    margin-bottom: 5px;

}

h2 {
    margin-top: 0;

}

p {
    font-size: 22px;
    text-align: justify;
    margin: 10px;
    margin-top: 200px;
}

img {
    width: 500px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 30px auto;
    max-width: 90%;
}

div {
    width: 700px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    background-image: url('./images/my.background_files');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.profile-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.image-container {
    flex: 0 0 45%;
}

.image-container img {
    width: 100%;
    margin: 0;
}

.text-section {
    flex: 1;
}

.text-section p {
    margin-top: 0;
}

.list-title {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

ul {
    padding-left: 20px;
    margin-top: 10px;
}

li {
    margin: 10px 0;
    font-size: 22px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

li:before {
    content: "•";
    color: #ffdca8;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 24px;
}


.btn {
    position: fixed;
    top: 20px;
    display: inline-block;
    padding: 12px 24px;
    color: white;
    text-decoration: none;
    border-radius: 70px;
    font-size: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 100;
    width: 280px; 
    white-space: nowrap; 
    border: 3px solid #ffcfa3;
    background-color: #ffddaf;
}

.btn:hover {
    background-color: #ffcfa3;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgb(226, 166, 109);
}

.btn:active {
    transform: scale(0.98);
}

.btn-prev {
    left: 20px;
}

.btn-next {
    right: 20px;
}

.center {
    padding-left: calc(50% - 500px);
    padding-right: calc(50% - 500px);
}

.memes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.memes-container img {
    width: 100%;
    height: 300px; 
    object-fit: cover; 
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}