/* ==============================================*/
/* =============== Fonts ========================*/
/* ==============================================*/

@font-face {
    font-family: 'SUSE-Font';
    src: url('Fonts/SUSE-Regular.woff2') format('woff2'),
        url('Fonts/SUSE-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SUSE-Font';
    src: url('Fonts/SUSE-Bold.woff2') format('woff2'),
        url('Fonts/SUSE-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/* ==============================================*/
/* =============== Basics =======================*/
/* ==============================================*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'SUSE-Font', sans-serif;
    background-color: rgb(236, 238, 223);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 50px;
    font-size: 16px;
    color: #000000;
    padding: 20px;
}

img {
    width: 250px;
    height: auto;
    border-radius: 15px;
    margin: 20px;
}

h1 {
    color: rgb(0, 0, 0);
    text-align: center;
    margin: 20px;
}


p {
    color: rgb(0, 0, 0);
    margin: 20px;
    text-align: left;
}

/* ==============================================*/
/* =============== Seccions =====================*/
/* ==============================================*/

.section {
    text-align: center;
    padding-top: 70px;
}

.box {
    border: 2px solid #a8383858;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(236, 238, 223);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin: 0 auto;
}

/* ==============================================*/
/* =============== Barra superior ===============*/
/* ==============================================*/

.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    z-index: 1000;
    display: flex;
}

.topnav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.topnav a:hover {
    background-color: #555;
}

.topnav a:hover {
    background-color: #881a1a;
    color: rgb(255, 255, 255);
}

.topnav a.active {
    background-color: #aa3434;
    color: white;
}

.topnav a.cloud-button {
    background-color: #aa3434;
    color: white;
    margin-left: center;
    text-align: center;
    margin-right: 20px;
}

/* ==============================================*/
/* =============== EMail Button ??===============*/
/* ==============================================*/

.email-button {
    background-color: #c66565;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.email-button:hover {
    background-color: #a93838;
}

/* ==============================================*/
/* =============== Others =======================*/
/* ==============================================*/

.hyperlink-text {
    color: rgb(90, 6, 6);
    cursor: pointer;    
}
